namespace UtopiaCanteenSystem.Models; /// Local SQLite cache of production hrms.lunch_menu_week. public class LunchMenuWeekCache { public int LocalId { get; set; } public long HrmsId { get; set; } public DateTime? WeekStartDate { get; set; } public DateTime? WeekEndDate { get; set; } public string CreatedBy { get; set; } = string.Empty; public DateTime? CreatedAt { get; set; } public int LocationSiteId { get; set; } public DateTime LastSyncedAtUtc { get; set; } }