From eff5fe87bcab584fa84eb1bd7504eb21a7df1985 Mon Sep 17 00:00:00 2001 From: nullablebool Date: Fri, 16 Feb 2018 01:15:41 -0800 Subject: [PATCH] Change WithdrawList to IEnumerable The IEnumerable sequence for WithdrawHistory is currently of type Deposit. Likely a copy and paste oversight. --- Binance.API.Csharp.Client.Models/Account/WithdrawHistory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Binance.API.Csharp.Client.Models/Account/WithdrawHistory.cs b/Binance.API.Csharp.Client.Models/Account/WithdrawHistory.cs index 36f2e32..14e6663 100644 --- a/Binance.API.Csharp.Client.Models/Account/WithdrawHistory.cs +++ b/Binance.API.Csharp.Client.Models/Account/WithdrawHistory.cs @@ -6,7 +6,7 @@ namespace Binance.API.Csharp.Client.Models.Account public class WithdrawHistory { [JsonProperty("withdrawList")] - public IEnumerable WithdrawList { get; set; } + public IEnumerable WithdrawList { get; set; } [JsonProperty("success")] public bool Success { get; set; } }