Response.cs 309 B

12345678910
  1. namespace Application.Features.Admin.Member.Wallet.List.Get;
  2. public sealed class Response
  3. {
  4. public int WalletID { get; init; }
  5. public long Balance { get; init; }
  6. public int MemberID { get; init; }
  7. public required string MemberEmail { get; init; }
  8. public string? GradeName { get; init; }
  9. }