| 12345678910111213141516171819 |
- namespace Application.Features.Admin.Channel.YouTubePubSub.Get;
- public sealed record SubscriptionItem(
- string YouTubeChannelID,
- int? ChannelID,
- string? ChannelName,
- string? Handle,
- string? ThumbnailUrl,
- bool HasInternalChannel,
- bool IsActive,
- bool IsSubscribed
- );
- public sealed record Response(
- IReadOnlyList<SubscriptionItem> Items,
- int TotalCount,
- int SubscribedCount,
- string CallbackUrl
- );
|