namespace CryptoExchange.Net.ExchangeInterfaces { /// /// Common symbol /// public interface ICommonSymbol { /// /// Symbol name /// public string CommonName { get; } /// /// Minimum trade size /// public decimal CommonMinimumTradeSize { get; } } }