Response.cs 234 B

1234567891011
  1. namespace Application.Features.Api.MyPage.Dropdown;
  2. public sealed record Response(
  3. string SID,
  4. string? Name,
  5. string? Thumb,
  6. bool IsCreator,
  7. int? ChannelID,
  8. int SpendableBalance,
  9. int? WithdrawableBalance
  10. );