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

15 lines
636 B
C#

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; } = [];
}