Files
ROLAC/API/ROLAC.API/DTOs/Giving/CreateOfferingSessionRequest.cs
2026-05-28 16:47:19 -07:00

12 lines
385 B
C#

using System.ComponentModel.DataAnnotations;
namespace ROLAC.API.DTOs.Giving;
public class CreateOfferingSessionRequest
{
[Required] public DateOnly SessionDate { get; set; }
public decimal CashTotal { get; set; }
public decimal CheckTotal { get; set; }
public string? Notes { get; set; }
public List<OfferingGivingLineRequest> Givings { get; set; } = [];
}