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