Response.cs 361 B

123456789101112131415
  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. );