Response.cs 469 B

1234567891011121314151617
  1. namespace Application.Features.Api.Crypto.Candle.GetLive;
  2. public sealed record Response(Response.CandleItem? Candle)
  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. decimal CandleAccTradeVolume,
  12. decimal CandleAccTradePrice,
  13. long Timestamp,
  14. string StreamType
  15. );
  16. }