Utopia-Canteen-System/Models/MenuItemCache.cs

15 lines
526 B
C#

namespace UtopiaCanteenSystem.Models;
/// <summary>Local SQLite cache of production <c>hrms.menu_item</c>.</summary>
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; }
}