Response.cs 746 B

12345678910111213141516171819202122232425262728293031
  1. using Domain.Entities.Crypto;
  2. namespace Application.Features.Admin.Crypto.List.Search
  3. {
  4. public sealed record Response(
  5. int Total,
  6. List<Response.Row> List,
  7. int AllCount,
  8. int KrwCount,
  9. int BtcCount,
  10. int UsdtCount
  11. )
  12. {
  13. public sealed record Row(
  14. int Num,
  15. int ID,
  16. List<CoinMarket> CoinMarkets,
  17. string Symbol,
  18. string KorName,
  19. string EngName,
  20. string? LogoImage,
  21. IReadOnlyList<string> CategoryNames,
  22. bool IsActive,
  23. bool IsWarning,
  24. bool IsNew,
  25. bool IsDelisted,
  26. DateTime? UpdatedAt,
  27. DateTime CreatedAt
  28. );
  29. }
  30. }