| 123456789101112131415 |
- namespace Application.Abstractions.YouTube;
- public sealed record YouTubeChannelInfo(
- string ChannelID,
- string Title,
- string Description,
- string ThumbnailUrl,
- string? BannerUrl,
- string? CustomUrl,
- long SubscriberCount,
- long VideoCount,
- long ViewCount,
- string? Email,
- DateTime? PublishedAt
- );
|