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

12 lines
352 B
C#

namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Intarfaces
{
public interface INewPriceMessage
{
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; }
}
}