YouTubeChannelInfo.cs 266 B

123456789101112
  1. namespace Application.Abstractions.YouTube;
  2. public sealed record YouTubeChannelInfo(
  3. string ChannelId,
  4. string Title,
  5. string Description,
  6. string ThumbnailUrl,
  7. string? CustomUrl,
  8. long SubscriberCount,
  9. long VideoCount,
  10. long ViewCount
  11. );