Response.cs 387 B

12345678910111213141516
  1. namespace Application.Features.Api.Studio.GetSettings;
  2. public sealed record Response(
  3. bool IsYouTubeConnected,
  4. string? ChannelName,
  5. string? Handle,
  6. string? Description,
  7. string? ChannelUrl,
  8. string? ThumbnailUrl,
  9. string? BannerUrl,
  10. long SubscriberCount,
  11. long VideoCount,
  12. long ViewCount,
  13. DateTime? YouTubePublishedAt,
  14. string? DonationCode
  15. );