Files
ROLAC/API/ROLAC.API/DTOs/Giving/OfferingSessionDto.cs
T
Chris Chen f55807fa7d wip
2026-06-20 15:13:23 -07:00

16 lines
548 B
C#

namespace ROLAC.API.DTOs.Giving;
public class OfferingSessionDto
{
public int Id { get; set; }
public DateOnly SessionDate{ get; set; }
public string Status { get; set; } = "";
public decimal CashTotal { get; set; }
public decimal CheckTotal { get; set; }
public decimal SystemTotal { get; set; }
public decimal Difference { get; set; }
public string? Notes { get; set; }
public bool HasProof { get; set; }
public List<OfferingGivingLineDto> Givings { get; set; } = [];
}