e04776460d
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
585 B
C#
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; }
|
|
}
|