namespace KLHZ.Trader.Core.Exchange { public class ExchangeConfig { public decimal FutureComission { get; set; } public decimal ShareComission { get; set; } public decimal AccountCashPart { get; set; } public decimal AccountCashPartFutures { get; set; } public decimal DefaultBuyPartOfAccount { get; set; } public string[] AllowedInstrumentsFigis { get; set; } = []; public string[] ManagingAccountNamePatterns { get; set; } = []; } }