using System; namespace CryptoExchange.Net.CommonObjects { /// /// Kline data /// public class Kline: BaseCommonObject { /// /// Opening time of the kline /// public DateTime OpenTime { get; set; } /// /// Price at the open time /// public decimal? OpenPrice { get; set; } /// /// Highest price of the kline /// public decimal? HighPrice { get; set; } /// /// Lowest price of the kline /// public decimal? LowPrice { get; set; } /// /// Close price of the kline /// public decimal? ClosePrice { get; set; } /// /// Volume of the kline /// public decimal? Volume { get; set; } } }