17 lines
522 B
C#
17 lines
522 B
C#
using KLHZ.Trader.Core.Contracts.Messaging.Dtos.Enums;
|
|
|
|
namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces
|
|
{
|
|
public interface ITradeCommand
|
|
{
|
|
public Guid CommandId { get; }
|
|
public TradeCommandType CommandType { get; }
|
|
public string Figi { get; }
|
|
public decimal? RecomendPrice { get; }
|
|
public long Count { get; }
|
|
public string AccountId { get; }
|
|
public string? OrderId { get; }
|
|
public bool EnableMargin { get; }
|
|
}
|
|
}
|