Skip to content

Commit

Permalink
Added Side to SharedTrade model
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Oct 23, 2024
1 parent ce35e30 commit bdd5526
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CryptoExchange.Net/SharedApis/ResponseModels/SharedTrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public record SharedTrade
/// Trade time
/// </summary>
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>
/// ctor
Expand Down

0 comments on commit bdd5526

Please sign in to comment.