Response.cs 281 B

1234567891011121314
  1. namespace Application.Features.Api.Studio.Dashboard.GetDashboard;
  2. public sealed record Response(
  3. ChannelInfo? Channel
  4. );
  5. public sealed record ChannelInfo(
  6. int Id,
  7. string Sid,
  8. string Name,
  9. string? ThumbnailUrl,
  10. bool IsVerified,
  11. long SubscriberCount
  12. );