| 1234567891011121314151617 |
- namespace Application.Features.Api.Channel.Get;
- public sealed record Response(
- string ChannelSID,
- string Name,
- string? Handle,
- string YouTubeUrl,
- string? ThumbnailUrl,
- string? BannerUrl,
- string? Description,
- long SubscriberCount,
- long VideoCount,
- bool IsVerified,
- bool IsLive,
- string? VideoId,
- string? LiveTitle
- );
|