11 lines
347 B
C#
11 lines
347 B
C#
namespace ROLAC.API.DTOs.MealAttendance;
|
|
|
|
/// <summary>The current head-count for one Sunday, broadcast over SignalR.</summary>
|
|
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; }
|
|
}
|