Response.cs 428 B

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