Commit f42acb6c authored by Jeremy Bokobza's avatar Jeremy Bokobza

Fixed a couple of models' fields

parent b11efe33
......@@ -16,7 +16,7 @@ namespace Breeze.Wallet.Models
public Money Fee { get; set; }
[JsonProperty(PropertyName = "feePercentOfSent")]
public double FeePercentOfSent { get; set; }
public decimal FeePercentOfSent { get; set; }
[JsonProperty(PropertyName = "hex")]
public string Hex { get; set; }
......
......@@ -19,7 +19,7 @@ namespace Breeze.Wallet.Models
public Money Amount { get; set; }
[JsonProperty(PropertyName = "confirmed")]
public Money Confirmed { get; set; }
public bool Confirmed { get; set; }
[JsonProperty(PropertyName = "timestamp")]
public string Timestamp { get; set; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment