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 Categories { get; set; } = []; public OfferingEntrySummaryDto Summary { get; set; } = new(); }