Response.cs 443 B

12345678910111213141516171819
  1. namespace Application.Features.Admin.Channel.YouTubePubSub.Get;
  2. public sealed record SubscriptionItem(
  3. string YouTubeChannelID,
  4. int? ChannelID,
  5. string? ChannelName,
  6. string? Handle,
  7. string? ThumbnailUrl,
  8. bool HasInternalChannel,
  9. bool IsActive,
  10. bool IsSubscribed
  11. );
  12. public sealed record Response(
  13. IReadOnlyList<SubscriptionItem> Items,
  14. int TotalCount,
  15. int SubscribedCount,
  16. string CallbackUrl
  17. );