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