mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-14 09:52:53 +00:00
26 lines
646 B
C#
26 lines
646 B
C#
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Quote asset order quantity support
|
|
/// </summary>
|
|
public enum SharedQuantityType
|
|
{
|
|
/// <summary>
|
|
/// Quantity should be in the base asset
|
|
/// </summary>
|
|
BaseAsset,
|
|
/// <summary>
|
|
/// Quantity should be in the quote asset
|
|
/// </summary>
|
|
QuoteAsset,
|
|
/// <summary>
|
|
/// Quantity is in the number of contracts
|
|
/// </summary>
|
|
Contracts,
|
|
/// <summary>
|
|
/// Quantity can be either base or quote quantity
|
|
/// </summary>
|
|
BaseAndQuoteAsset
|
|
}
|
|
}
|