Response.cs 582 B

1234567891011121314151617181920212223
  1. namespace Application.Features.Admin.Channel.List.Search;
  2. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Num,
  6. int ID,
  7. string SID,
  8. string Name,
  9. string? Handle,
  10. string? ThumbnailUrl,
  11. string YouTubeUrl,
  12. decimal PlatformFeeRate,
  13. decimal StoreCommissionRate,
  14. bool IsVerified,
  15. bool IsActive,
  16. int MemberID,
  17. string? MemberName,
  18. string? MemberEmail,
  19. DateTime? UpdatedAt,
  20. DateTime CreatedAt
  21. );
  22. }