Skip to content

Commit 2987311

Browse files
authored
Change binance UserDataStream classes back to internal (#659)
- reverts change made in #646 - while that change fixed the User Data Websocket for Binance, it is very binance specific - OnUserDataWebSocketAsync() needs to be rewritten to be multi-exchange friendly
1 parent 52a411f commit 2987311

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace ExchangeSharp.BinanceGroup
99
{
10-
public class ExecutionReport
10+
internal class ExecutionReport
1111
{
1212
[JsonProperty("e")]
1313
public string EventType { get; set; }
@@ -75,7 +75,7 @@ public override string ToString()
7575

7676
}
7777

78-
public class Order
78+
internal class Order
7979
{
8080
[JsonProperty("s")]
8181
public string Symbol { get; set; }
@@ -90,7 +90,7 @@ public override string ToString()
9090
}
9191
}
9292

93-
public class ListStatus
93+
internal class ListStatus
9494
{
9595
[JsonProperty("e")]
9696
public string EventType { get; set; }
@@ -121,7 +121,7 @@ public override string ToString()
121121
}
122122
}
123123

124-
public class Balance
124+
internal class Balance
125125
{
126126
[JsonProperty("a")]
127127
public string Asset { get; set; }
@@ -136,7 +136,7 @@ public override string ToString()
136136
}
137137
}
138138

139-
public class OutboundAccount
139+
internal class OutboundAccount
140140
{
141141
[JsonProperty("e")]
142142
public string EventType { get; set; }

0 commit comments

Comments
 (0)