mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
18 lines
333 B
C#
18 lines
333 B
C#
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// The side of a position
|
|
/// </summary>
|
|
public enum SharedPositionSide
|
|
{
|
|
/// <summary>
|
|
/// Long position
|
|
/// </summary>
|
|
Long,
|
|
/// <summary>
|
|
/// Short position
|
|
/// </summary>
|
|
Short
|
|
}
|
|
}
|