namespace ROLAC.API.DTOs.Giving; public class GivingListItemDto { public int Id { get; set; } public int? MemberId { get; set; } public string? MemberName { get; set; } public int GivingCategoryId { get; set; } public string CategoryName { get; set; } = ""; public decimal Amount { get; set; } public string PaymentMethod { get; set; } = ""; public string GivingDate { get; set; } = ""; // ISO yyyy-MM-dd public bool IsAnonymous { get; set; } public int? OfferingSessionId { get; set; } }