namespace ROLAC.API.DTOs.MealAttendance; /// The current head-count for one Sunday, broadcast over SignalR. public class AttendanceCountsDto { public string Date { get; set; } = ""; // yyyy-MM-dd (local) public int Adult { get; set; } public int Youth { get; set; } public int Kid { get; set; } }