| 123456789101112131415 |
- namespace Application.Features.Api.Studio.GetSettings;
- public sealed record Response(
- bool IsYouTubeConnected,
- string? ChannelName,
- string? Handle,
- string? Description,
- string? ChannelUrl,
- string? ThumbnailUrl,
- string? BannerUrl,
- long SubscriberCount,
- long VideoCount,
- long ViewCount,
- DateTime? YouTubePublishedAt
- );
|