Response.cs 385 B

12345678910111213141516
  1. namespace Application.Features.Api.Channel.GetCreators;
  2. public sealed record Response(IReadOnlyList<CreatorItem> Creators);
  3. public sealed record CreatorItem(
  4. string ChannelSID,
  5. string Name,
  6. string? Handle,
  7. string? ThumbnailUrl,
  8. long SubscriberCount,
  9. long FollowerCount,
  10. string? GradeName,
  11. string? GradeImage,
  12. string? GradeColor,
  13. bool IsLive
  14. );