Utopia-Canteen-System/Services/AuthResult.cs

9 lines
201 B
C#

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