namespace UtopiaCanteenSystem.Models; /// Local SQLite cache of production hrms.meal_schedule. public class MealScheduleCache { public int LocalId { get; set; } public long HrmsId { get; set; } public string MealName { get; set; } = string.Empty; public string StartTime { get; set; } = string.Empty; public string EndTime { get; set; } = string.Empty; public DateTime? CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public int LocationSiteId { get; set; } public DateTime LastSyncedAtUtc { get; set; } }