namespace ROLAC.API.DTOs.MealAttendance; /// Absolute head-counts to write for one Sunday, from the back-office editor. public class SetAttendanceRequest { public int Adult { get; set; } public int Youth { get; set; } public int Kid { get; set; } }