15 lines
516 B
C#
15 lines
516 B
C#
namespace UtopiaCanteen.Shared;
|
|
|
|
public sealed class MealScheduleDto
|
|
{
|
|
public long Id { get; set; }
|
|
public string MealName { get; set; } = string.Empty;
|
|
public string LocationSiteId { get; set; } = string.Empty;
|
|
public int MealSession { get; set; }
|
|
public string StartTime { get; set; } = string.Empty;
|
|
public string EndTime { get; set; } = string.Empty;
|
|
public bool IsActive { get; set; } = true;
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|