| 12345678910111213141516171819202122232425 |
- namespace Application.Features.Api.ChannelTitle.GetMyTitles;
- public sealed record Response(IReadOnlyList<ChannelTitleGroup> Groups);
- public sealed record ChannelTitleGroup(
- int ChannelID,
- string ChannelName,
- string? ChannelThumb,
- long CumulativeAmount,
- int DonationCount,
- int? SelectedTitleID,
- IReadOnlyList<MyTitleItem> Titles
- );
- public sealed record MyTitleItem(
- int ID,
- string Name,
- string? Description,
- long MinAmount,
- string Color,
- string? IconUrl,
- bool IsAcquired,
- bool IsSelected,
- long RemainingAmount
- );
|