Response.cs 362 B

123456789101112131415
  1. namespace Application.Features.Api.Channel.SearchForOrder;
  2. public sealed record Response(int Total, List<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int ID,
  6. string SID,
  7. string Name,
  8. string? Handle,
  9. string? ThumbnailUrl,
  10. long SubscriberCount,
  11. bool IsVerified,
  12. string? DonationCode
  13. );
  14. }