|
namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Intarfaces
|
|
{
|
|
public interface INewPrice
|
|
{
|
|
public bool IsHistoricalData { get; set; }
|
|
public decimal Value { get; set; }
|
|
public string Figi { get; set; }
|
|
public string Ticker { get; set; }
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|