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 List Givings { get; set; } = []; }