Skip to content

Commit

Permalink
Added Fee and FeeAsset to SpotApi.SubscribeToUserTradeUpdatesAsync up…
Browse files Browse the repository at this point in the history
…date model
  • Loading branch information
JKorf committed Aug 7, 2024
1 parent 1844b78 commit c1404ed
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CoinEx.Net/CoinEx.Net.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions CoinEx.Net/Objects/Models/V2/CoinExUserTrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,15 @@ public record CoinExUserTrade
/// </summary>
[JsonPropertyName("amount")]
public decimal Quantity { get; set; }
/// <summary>
/// Fee paid
/// </summary>
[JsonPropertyName("fee")]
public decimal Fee { get; set; }
/// <summary>
/// Fee asest
/// </summary>
[JsonPropertyName("fee_ccy")]
public string FeeAsset { get; set; } = string.Empty;
}
}

0 comments on commit c1404ed

Please sign in to comment.