1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-14 09:52:53 +00:00

Added orderbook base

This commit is contained in:
Jan Korf
2019-05-13 15:39:42 +02:00
parent 0dedf687d5
commit 2382dbed2d
9 changed files with 363 additions and 13 deletions
+11 -4
View File
@@ -18,10 +18,17 @@
Json
}
public enum SocketType
public enum OrderBookStatus
{
Normal,
Background,
BackgroundAuthenticated
Disconnected,
Connecting,
Syncing,
Synced,
}
public enum OrderBookEntryType
{
Ask,
Bid
}
}