Response.cs 548 B

12345678910111213141516171819
  1. namespace Application.Features.Api.Crypto.Candle.GetDays;
  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. decimal PrevClosingPrice,
  15. decimal ChangePrice,
  16. decimal ChangeRate
  17. );
  18. }