1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-10-27 00:17:31 +00:00

Added ClientOrderId property to SharedUserTrade model

This commit is contained in:
Jkorf 2025-10-13 15:42:27 +02:00
parent 61130ef54e
commit f6f9a53ce5

View File

@ -28,6 +28,10 @@ namespace CryptoExchange.Net.SharedApis
/// </summary>
public string OrderId { get; set; }
/// <summary>
/// The client order id
/// </summary>
public string? ClientOrderId { get; set; }
/// <summary>
/// Side of the trade
/// </summary>
public SharedOrderSide? Side { get; set; }