e04776460d
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
385 B
C#
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; } = [];
|
|
}
|