11 lines
347 B
C#
11 lines
347 B
C#
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;
|
|
}
|
|
}
|