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

12 lines
345 B
C#

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; }
}
}