Files
ROLAC/API/ROLAC.API/DTOs/Giving/OfferingEntryBootstrapDto.cs
T
2026-06-20 20:42:06 -07:00

11 lines
439 B
C#

namespace ROLAC.API.DTOs.Giving;
// One-shot payload that seeds the mobile offering-entry page: the active giving
// categories for the Type dropdown and the current state of today's session.
public class OfferingEntryBootstrapDto
{
public string SessionDate { get; set; } = ""; // yyyy-MM-dd
public List<GivingCategoryDto> Categories { get; set; } = [];
public OfferingEntrySummaryDto Summary { get; set; } = new();
}