namespace KLHZ.Trader.Core.Exchange.Models.Configs { public class InstrumentSettings { public required string Figi { get; init; } public decimal ShortLeverage { get; init; } public decimal LongLeverage { get; init; } public decimal PriceToRubConvertationCoefficient { get; init; } = 1; } }