add quick add entry.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace ROLAC.API.DTOs.Giving;
|
||||
|
||||
// A day's offering session as the mobile page sees it: the running total/line
|
||||
// count plus the lines already recorded. SessionId is null when no session
|
||||
// exists for the date yet (nothing entered today).
|
||||
public class OfferingEntrySummaryDto
|
||||
{
|
||||
public int? SessionId { get; set; }
|
||||
public string SessionDate { get; set; } = ""; // yyyy-MM-dd
|
||||
public string? Status { get; set; } // null when no session yet
|
||||
public decimal SystemTotal { get; set; }
|
||||
public int LineCount { get; set; }
|
||||
public List<OfferingGivingLineDto> Lines { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user