11 lines
439 B
C#
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();
|
|
}
|