10 lines
283 B
C#
10 lines
283 B
C#
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; }
|
|
}
|