namespace UtopiaCanteenSystem.Models; /// Local SQLite cache of production hrms.menu_item. public class MenuItemCache { public int LocalId { get; set; } public long HrmsId { get; set; } public string ItemName { get; set; } = string.Empty; public string ItemType { get; set; } = string.Empty; public decimal Price { get; set; } public string ItemFor { get; set; } = string.Empty; public int LocationSiteId { get; set; } public DateTime LastSyncedAtUtc { get; set; } }