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