Response.cs 399 B

123456789101112131415
  1. namespace Application.Features.Api.Channel.GetLiveList;
  2. public sealed record Response(IReadOnlyList<LiveChannelItem> Channels, int Total);
  3. public sealed record LiveChannelItem(
  4. string ChannelSID,
  5. string ChannelName,
  6. string? Handle,
  7. string? ChannelThumbnailUrl,
  8. string VideoId,
  9. string VideoThumbnailUrl,
  10. string LiveTitle,
  11. int ViewerCount,
  12. DateTime? StartedAt
  13. );