using KLHZ.Trader.Core.Common.Messaging.Contracts.Messages.Enums; namespace KLHZ.Trader.Core.Common.Messaging.Contracts.Messages { public class TradeCommand { public TradeCommandType CommandType { get; init; } public string? Figi { get; init; } public string? Ticker { get; init; } public decimal? RecomendPrice { get; init; } public decimal? Count { get; init; } public decimal? LotsCount { get; init; } public string? AccountId { get; init; } public bool IsNeedBigCashOnAccount { get; init; } } }