| 123456789101112131415 |
- namespace Application.Features.Api.ChannelTitle.GetChannelTitles;
- public sealed record Response(IReadOnlyList<TitleItem> Titles);
- public sealed record TitleItem(
- int ID,
- int ChannelID,
- string Name,
- string? Description,
- long MinAmount,
- string Color,
- string? IconUrl,
- int SortOrder,
- bool IsActive
- );
|