klhztrader/KLHZ.Trader.Core.Contracts/Messaging/Dtos/Interfaces/INewPrice.cs

13 lines
392 B
C#

namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces
{
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; }
public bool IsSellPrice { get; set; }
}
}