Utopia-Canteen-System/Services/AuthResult.cs

10 lines
202 B
C#

namespace UtopiaCanteenSystem.Services;
/// <summary>
/// Result of an admin authentication attempt.
/// </summary>
public readonly record struct AuthResult(
bool Success,
string EmployeeId);