add quick add entry.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user