using System; namespace CryptoExchange.Net.SharedApis { /// /// Futures symbol info /// public record SharedFuturesSymbol : SharedSpotSymbol { /// /// The size of a single contract /// public decimal? ContractSize { get; set; } /// /// Delivery time of the contract /// public DateTime? DeliveryTime { get; set; } /// /// Max short leverage setting /// public decimal? MaxShortLeverage { get; set; } /// /// Max long leverage setting /// public decimal? MaxLongLeverage { get; set; } /// /// ctor /// public SharedFuturesSymbol(TradingMode symbolType, string baseAsset, string quoteAsset, string symbol, bool trading) : base(baseAsset, quoteAsset, symbol, trading, symbolType) { } } }