| 1234567891011121314 |
- namespace Application.Features.Api.Channel.List;
- public sealed record Response(IReadOnlyList<ChannelItem> Channels);
- public sealed record ChannelItem(
- string ChannelSID,
- string Name,
- string? Handle,
- string? ThumbnailUrl,
- long SubscriberCount,
- bool IsLive,
- int ViewerCount,
- string? VideoId
- );
|