Response.cs 575 B

12345678910111213141516171819202122
  1. namespace Application.Features.Api.Crypto.Ticker.GetDetail;
  2. public sealed record Response(
  3. string Market,
  4. decimal TradePrice,
  5. string Change,
  6. decimal SignedChangePrice,
  7. decimal SignedChangeRate,
  8. decimal OpeningPrice,
  9. decimal HighPrice,
  10. decimal LowPrice,
  11. decimal PrevClosingPrice,
  12. decimal AccTradePrice,
  13. decimal AccTradePrice24h,
  14. decimal AccTradeVolume,
  15. decimal AccTradeVolume24h,
  16. decimal Highest52WeekPrice,
  17. string Highest52WeekDate,
  18. decimal Lowest52WeekPrice,
  19. string Lowest52WeekDate,
  20. long Timestamp
  21. );