feat(attendance): add PUT /api/meal-attendance/{date} to overwrite a Sunday's counts

This commit is contained in:
Chris Chen
2026-06-24 11:18:27 -07:00
parent 7dc03f3bc0
commit 7eb6a4db78
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace ROLAC.API.DTOs.MealAttendance;
/// <summary>Absolute head-counts to write for one Sunday, from the back-office editor.</summary>
public class SetAttendanceRequest
{
public int Adult { get; set; }
public int Youth { get; set; }
public int Kid { get; set; }
}