mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-08 02:31:11 +00:00
18 lines
411 B
C#
18 lines
411 B
C#
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// The role of a trade
|
|
/// </summary>
|
|
public enum SharedRole
|
|
{
|
|
/// <summary>
|
|
/// Maker role, put an order on the order book which has been filled
|
|
/// </summary>
|
|
Maker,
|
|
/// <summary>
|
|
/// Taker role, took an order of the order book to fill
|
|
/// </summary>
|
|
Taker
|
|
}
|
|
}
|