| 1234567891011121314151617 |
- namespace Application.Features.Api.Crypto.Candle.GetLive;
- public sealed record Response(Response.CandleItem? Candle)
- {
- public sealed record CandleItem(
- string CandleDateTimeUtc,
- string CandleDateTimeKst,
- decimal OpeningPrice,
- decimal HighPrice,
- decimal LowPrice,
- decimal TradePrice,
- decimal CandleAccTradeVolume,
- decimal CandleAccTradePrice,
- long Timestamp,
- string StreamType
- );
- }
|