14 lines
398 B
C#
14 lines
398 B
C#
using KLHZ.Trader.Core.Contracts.Messaging.Dtos.Enums;
|
|
|
|
namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces
|
|
{
|
|
public interface ITradeCommand
|
|
{
|
|
public TradeCommandType CommandType { get; }
|
|
public string Figi { get; }
|
|
public decimal? RecomendPrice { get; }
|
|
public long Count { get; }
|
|
public string AccountId { get; }
|
|
}
|
|
}
|