Utopia-Canteen-System/Models/LunchMenuItemCache.cs

16 lines
583 B
C#

namespace UtopiaCanteenSystem.Models;
/// <summary>Local SQLite cache of production <c>hrms.lunch_menu_item</c>.</summary>
public class LunchMenuItemCache
{
public int LocalId { get; set; }
public long HrmsId { get; set; }
public long LunchMenuWeekHrmsId { get; set; }
public string DayOfWeek { get; set; } = string.Empty;
public string MealName { get; set; } = string.Empty;
public long MenuItemHrmsId { get; set; }
public DateTime? CreatedAt { get; set; }
public DateTime? MenuDate { get; set; }
public DateTime LastSyncedAtUtc { get; set; }
}