Response.cs 325 B

1234567891011121314
  1. namespace Application.Features.Api.Channel.List;
  2. public sealed record Response(IReadOnlyList<ChannelItem> Channels);
  3. public sealed record ChannelItem(
  4. string ChannelSID,
  5. string Name,
  6. string? Handle,
  7. string? ThumbnailUrl,
  8. long SubscriberCount,
  9. bool IsLive,
  10. int ViewerCount,
  11. string? VideoId
  12. );