Response.cs 515 B

123456789101112131415161718192021
  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 YouTubeUrl,
  11. decimal PlatformFeeRate,
  12. bool IsVerified,
  13. bool IsActive,
  14. int MemberID,
  15. string? MemberName,
  16. string? MemberEmail,
  17. DateTime? UpdatedAt,
  18. DateTime CreatedAt
  19. );
  20. }