16 lines
611 B
C#
16 lines
611 B
C#
namespace ROLAC.API.DTOs.Giving;
|
|
|
|
public class OfferingSessionListItemDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string SessionDate { get; set; } = ""; // yyyy-MM-dd
|
|
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 int LineCount { get; set; }
|
|
public bool HasProof { get; set; }
|
|
public int? SundayAttendanceCount { get; set; } // null = no attendance recorded for the date
|
|
}
|