14 lines
395 B
C#
14 lines
395 B
C#
namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces
|
|
{
|
|
public interface INewPrice
|
|
{
|
|
public bool IsHistoricalData { get; }
|
|
public decimal Price { get; }
|
|
public string Figi { get; }
|
|
public string Ticker { get; }
|
|
public DateTime Time { get; }
|
|
public long Count { get; }
|
|
public int Direction { get; }
|
|
}
|
|
}
|