Response.cs 336 B

123456789101112131415
  1. namespace Application.Features.Api.ChannelTitle.GetChannelTitles;
  2. public sealed record Response(IReadOnlyList<TitleItem> Titles);
  3. public sealed record TitleItem(
  4. int ID,
  5. int ChannelID,
  6. string Name,
  7. string? Description,
  8. long MinAmount,
  9. string Color,
  10. string? IconUrl,
  11. int SortOrder,
  12. bool IsActive
  13. );