| 123456789101112131415 |
- namespace Application.Features.Api.Channel.GetLiveList;
- public sealed record Response(IReadOnlyList<LiveChannelItem> Channels, int Total);
- public sealed record LiveChannelItem(
- string ChannelSID,
- string ChannelName,
- string? Handle,
- string? ChannelThumbnailUrl,
- string VideoId,
- string VideoThumbnailUrl,
- string LiveTitle,
- int ViewerCount,
- DateTime? StartedAt
- );
|