| 123456789101112131415161718192021222324252627282930 |
- namespace Application.Features.Api.Crypto.Ticker.GetDetail;
- public sealed record Response(
- string Market,
- string TradeDate,
- string TradeTime,
- string TradeDateKst,
- string TradeTimeKst,
- long TradeTimestamp,
- decimal OpeningPrice,
- decimal HighPrice,
- decimal LowPrice,
- decimal TradePrice,
- decimal PrevClosingPrice,
- string Change,
- decimal ChangePrice,
- decimal ChangeRate,
- decimal SignedChangePrice,
- decimal SignedChangeRate,
- decimal TradeVolume,
- decimal AccTradePrice,
- decimal AccTradePrice24h,
- decimal AccTradeVolume,
- decimal AccTradeVolume24h,
- decimal Highest52WeekPrice,
- string Highest52WeekDate,
- decimal Lowest52WeekPrice,
- string Lowest52WeekDate,
- long Timestamp
- );
|