YouTubeChannelInfo.cs 335 B

123456789101112131415
  1. namespace Application.Abstractions.YouTube;
  2. public sealed record YouTubeChannelInfo(
  3. string ChannelID,
  4. string Title,
  5. string Description,
  6. string ThumbnailUrl,
  7. string? BannerUrl,
  8. string? CustomUrl,
  9. long SubscriberCount,
  10. long VideoCount,
  11. long ViewCount,
  12. string? Email,
  13. DateTime? PublishedAt
  14. );