Response.cs 460 B

12345678910111213141516
  1. namespace Application.Features.Api.Crypto.Candle.GetSeconds;
  2. public sealed record Response(IReadOnlyList<Response.CandleItem> Candles)
  3. {
  4. public sealed record CandleItem(
  5. string CandleDateTimeUtc,
  6. string CandleDateTimeKst,
  7. decimal OpeningPrice,
  8. decimal HighPrice,
  9. decimal LowPrice,
  10. decimal TradePrice,
  11. long Timestamp,
  12. decimal CandleAccTradePrice,
  13. decimal CandleAccTradeVolume
  14. );
  15. }