Response.cs 579 B

12345678910111213141516171819202122232425
  1. namespace Application.Features.Api.ChannelTitle.GetMyTitles;
  2. public sealed record Response(IReadOnlyList<ChannelTitleGroup> Groups);
  3. public sealed record ChannelTitleGroup(
  4. int ChannelID,
  5. string ChannelName,
  6. string? ChannelThumb,
  7. long CumulativeAmount,
  8. int DonationCount,
  9. int? SelectedTitleID,
  10. IReadOnlyList<MyTitleItem> Titles
  11. );
  12. public sealed record MyTitleItem(
  13. int ID,
  14. string Name,
  15. string? Description,
  16. long MinAmount,
  17. string Color,
  18. string? IconUrl,
  19. bool IsAcquired,
  20. bool IsSelected,
  21. long RemainingAmount
  22. );