| 1234567891011121314151617181920 |
- namespace Application.Features.Api.MyPage.DonationLogs;
- public sealed record Response(
- List<DonationLogItem> List,
- int Total,
- int Page,
- int PerPage
- );
- public sealed record DonationLogItem(
- int ID,
- DateTime CreatedAt,
- string SendName, // 보낸 이 (익명 후원이면 "익명" 등 후원자가 입력한 표시명)
- string? ReceiverChannelName,
- string? Message, // 전달 내용
- int Amount, // 사용 포인트(P) — 차감 금액
- long? BalanceAfter, // 잔여 포인트(P) — PgCharged 트랜잭션 직후 잔액
- bool IsCrew, // 합방 후원 여부
- bool IsTest // 테스트 후원 여부
- );
|