using System.Collections.Generic;
using CryptoExchange.Net.Interfaces;
namespace CryptoExchange.Net.ExchangeInterfaces
{
///
/// Common order book
///
public interface ICommonOrderBook
{
///
/// Bids
///
IEnumerable CommonBids { get; }
///
/// Asks
///
IEnumerable CommonAsks { get; }
}
}