namespace ROLAC.API.DTOs.Giving; public class GivingDto { public int Id { get; set; } public int? MemberId { get; set; } public string? MemberName { get; set; } public int GivingCategoryId { get; set; } public int? OfferingSessionId { get; set; } public decimal Amount { get; set; } public string PaymentMethod { get; set; } = ""; public string? CheckNumber { get; set; } public string? ZelleReferenceCode { get; set; } public string? PayPalTransactionId { get; set; } public DateOnly GivingDate { get; set; } public bool IsAnonymous { get; set; } public string? Notes { get; set; } }