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

12 lines
345 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; }
}
}