mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-16 19:03:01 +00:00
16 lines
355 B
C#
16 lines
355 B
C#
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Options for setting position mode
|
|
/// </summary>
|
|
public class SetPositionModeOptions : EndpointOptions<SetPositionModeRequest>
|
|
{
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
public SetPositionModeOptions() : base(true)
|
|
{
|
|
}
|
|
}
|
|
}
|