Response.cs 793 B

1234567891011121314151617181920212223242526272829
  1. namespace Application.Features.Api.Crypto.Ticker.GetAll;
  2. public sealed record Response(IReadOnlyList<Response.Row> Tickers)
  3. {
  4. public sealed record Row(
  5. string Market,
  6. string Symbol,
  7. string KorName,
  8. string EngName,
  9. string? LogoImage,
  10. decimal OpeningPrice,
  11. decimal HighPrice,
  12. decimal LowPrice,
  13. decimal TradePrice,
  14. decimal PrevClosingPrice,
  15. string Change,
  16. decimal ChangePrice,
  17. decimal SignedChangePrice,
  18. decimal ChangeRate,
  19. decimal SignedChangeRate,
  20. decimal TradeVolume,
  21. decimal AccTradeVolume,
  22. decimal AccTradeVolume24h,
  23. decimal AccTradePrice,
  24. decimal AccTradePrice24h,
  25. bool IsFeatured,
  26. short DisplayOrder
  27. );
  28. }