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

16 lines
585 B
C#

namespace ROLAC.API.DTOs.Giving;
public class OfferingGivingLineDto
{
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? CheckNumber { get; set; }
public bool IsAnonymous { get; set; }
public string? Notes { get; set; }
}