namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces { public interface IOrderbook { public string Ticker { get; } public string Figi { get; } public int AsksCount {get;} public int BidsCount {get;} public DateTime Time { get; } public IOrderbookItem[] Asks { get; } public IOrderbookItem[] Bids { get; } } }