feat(attendance): add PUT /api/meal-attendance/{date} to overwrite a Sunday's counts
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user