using System; using System.Collections.Generic; using System.Text; namespace CryptoExchange.Net.SharedApis { /// /// Take Profit / Stop Loss side /// public enum SharedTpSlSide { /// /// Take profit /// TakeProfit, /// /// Stop loss /// StopLoss } }