namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces { public interface INewPrice { public bool IsHistoricalData { get; } public decimal Price { get; } public string Figi { get; } public string Ticker { get; } public DateTime Time { get; } public long Count { get; } public int Direction { get; } } }