15 lines
527 B
C#
15 lines
527 B
C#
namespace UtopiaCanteenSystem.Models;
|
|
|
|
/// <summary>Local SQLite cache of production <c>hrms.lunch_menu_week</c>.</summary>
|
|
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; }
|
|
}
|