| 12345678910111213141516171819 |
- using Domain.Entities.Wallets.ValueObject;
- namespace Application.Features.Admin.Member.Wallet.List.Get;
- public sealed class Response
- {
- public int WalletID { get; init; }
- public long Balance { get; init; }
- public int MemberID { get; init; }
- public required string MemberEmail { get; init; }
- public string? GradeName { get; init; }
- public List<BalanceItem> Balances { get; init; } = [];
- public sealed record BalanceItem(
- WalletBalanceType Type,
- long Amount
- );
- }
|