Utopia-Canteen-System/UtopiaCanteen.Shared/ScanResponse.cs

16 lines
530 B
C#

namespace UtopiaCanteen.Shared;
public sealed class ScanResponse
{
public bool Success { get; set; }
public string Message { get; set; } = string.Empty;
public int CooldownSecondsRemaining { get; set; }
public EmployeeDto? Employee { get; set; }
public int MealSession { get; set; }
public string? EmployeeSiteId { get; set; }
public string? CurrentSiteId { get; set; }
public string? MealLabel { get; set; }
public string? MealItems { get; set; }
public double TotalPrice { get; set; }
}