| 12345678910111213141516171819202122 |
- namespace Application.Features.Api.Crypto.Ticker.GetDetail;
- public sealed record Response(
- string Market,
- decimal TradePrice,
- string Change,
- decimal SignedChangePrice,
- decimal SignedChangeRate,
- decimal OpeningPrice,
- decimal HighPrice,
- decimal LowPrice,
- decimal PrevClosingPrice,
- decimal AccTradePrice,
- decimal AccTradePrice24h,
- decimal AccTradeVolume,
- decimal AccTradeVolume24h,
- decimal Highest52WeekPrice,
- string Highest52WeekDate,
- decimal Lowest52WeekPrice,
- string Lowest52WeekDate,
- long Timestamp
- );
|