17 lines
573 B
C#
17 lines
573 B
C#
using KLHZ.Trader.Core.Contracts.Messaging.Dtos.Enums;
|
|
|
|
namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos
|
|
{
|
|
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; }
|
|
}
|
|
}
|