diff --git a/CryptoExchange.Net/SharedApis/ResponseModels/SharedFuturesTicker.cs b/CryptoExchange.Net/SharedApis/ResponseModels/SharedFuturesTicker.cs index 713de37..357b80c 100644 --- a/CryptoExchange.Net/SharedApis/ResponseModels/SharedFuturesTicker.cs +++ b/CryptoExchange.Net/SharedApis/ResponseModels/SharedFuturesTicker.cs @@ -14,15 +14,15 @@ namespace CryptoExchange.Net.SharedApis /// /// Last trade price /// - public decimal LastPrice { get; set; } + public decimal? LastPrice { get; set; } /// /// High price in the last 24h /// - public decimal HighPrice { get; set; } + public decimal? HighPrice { get; set; } /// /// Low price in the last 24h /// - public decimal LowPrice { get; set; } + public decimal? LowPrice { get; set; } /// /// The volume in the last 24h /// @@ -51,7 +51,7 @@ namespace CryptoExchange.Net.SharedApis /// /// ctor /// - public SharedFuturesTicker(string symbol, decimal lastPrice, decimal highPrice, decimal lowPrice, decimal volume, decimal? changePercentage) + public SharedFuturesTicker(string symbol, decimal? lastPrice, decimal? highPrice, decimal? lowPrice, decimal volume, decimal? changePercentage) { Symbol = symbol; LastPrice = lastPrice;