Response.cs 367 B

1234567891011121314151617
  1. namespace Application.Features.Api.Channel.Get;
  2. public sealed record Response(
  3. string ChannelSID,
  4. string Name,
  5. string? Handle,
  6. string YouTubeUrl,
  7. string? ThumbnailUrl,
  8. string? BannerUrl,
  9. string? Description,
  10. long SubscriberCount,
  11. long VideoCount,
  12. bool IsVerified,
  13. bool IsLive,
  14. string? VideoId,
  15. string? LiveTitle
  16. );