Response.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. namespace Application.Features.Member.List.Search;
  2. public sealed class Response
  3. {
  4. public int Total { get; init; }
  5. public required IReadOnlyList<Row> List { get; init; }
  6. public sealed class Row
  7. {
  8. public int Num { get; init; }
  9. public int ID { get; init; }
  10. public required string Email { get; init; }
  11. public string? Name { get; init; }
  12. public string? FullName { get; init; }
  13. public string? Icon { get; init; }
  14. public string? Phone { get; init; }
  15. public string? Birthday { get; init; }
  16. public string? Gender { get; init; }
  17. public string? GradeName { get; init; }
  18. public bool IsEmailVerified { get; init; }
  19. public bool IsAuthCertified { get; init; }
  20. public bool IsDenied { get; init; }
  21. public bool IsWithdraw { get; init; }
  22. public long Following { get; init; }
  23. public long Followed { get; init; }
  24. public DateTime? LastLoginAt { get; init; }
  25. public string? LastLoginIp { get; init; }
  26. public DateTime? UpdatedAt { get; init; }
  27. public required DateTime CreatedAt { get; init; }
  28. }
  29. }