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