1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-07 16:06:15 +00:00

Added Side to SharedTrade model

This commit is contained in:
Jkorf 2024-10-23 14:01:17 +02:00
parent ce35e30688
commit bdd5526244

View File

@ -19,6 +19,10 @@ namespace CryptoExchange.Net.SharedApis
/// Trade time /// Trade time
/// </summary> /// </summary>
public DateTime Timestamp { get; set; } public DateTime Timestamp { get; set; }
/// <summary>
/// Trade side. Buy means that the taker took an ask order of the order book, sell means the taker took a bid order of the order book.
/// </summary>
public SharedOrderSide? Side { get; set; }
/// <summary> /// <summary>
/// ctor /// ctor