using ROLAC.API.Entities.Base; namespace ROLAC.API.Entities; /// /// One row per Sunday holding the live shared head-count for the three /// age groups. Volunteers increment these concurrently from the public /// counter page; the columns are updated with atomic SQL increments. /// public class MealAttendance : AuditableEntity { public int Id { get; set; } public DateOnly AttendanceDate { get; set; } public int AdultCount { get; set; } public int YouthCount { get; set; } public int KidCount { get; set; } }