Response.cs 562 B

123456789101112131415161718192021
  1. namespace Application.Features.Admin.Crypto.List.Search
  2. {
  3. public sealed record Response(int Total, List<Response.Row> List)
  4. {
  5. public sealed record Row(
  6. int Num,
  7. int ID,
  8. string Symbol,
  9. string KorName,
  10. string EngName,
  11. string? LogoImage,
  12. IReadOnlyList<string> CategoryNames,
  13. bool IsActive,
  14. bool IsWarning,
  15. bool IsNew,
  16. bool IsDelisted,
  17. DateTime? UpdatedAt,
  18. DateTime CreatedAt
  19. );
  20. }
  21. }