Skip to content

Commit

Permalink
Symbol precision properties changed to int from decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Jun 12, 2024
1 parent 2ffc3f8 commit a365769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GateIo.Net/Objects/Models/GateIoSymbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ public record GateIoSymbol
/// Quantity decimal precision
/// </summary>
[JsonPropertyName("amount_precision")]
public decimal QuantityPrecision { get; set; }
public int QuantityPrecision { get; set; }
/// <summary>
/// Price decimal precision
/// </summary>
[JsonPropertyName("precision")]
public decimal PricePrecision { get; set; }
public int PricePrecision { get; set; }
/// <summary>
/// Trading status
/// </summary>
Expand Down

0 comments on commit a365769

Please sign in to comment.