1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-19 20:33:03 +00:00

Added UpdateType to DataEvent model, added additional scenarios to BoolConverter, updated some logging

This commit is contained in:
JKorf
2023-10-08 16:59:43 +02:00
parent ac5f333766
commit 212d457a6a
6 changed files with 50 additions and 30 deletions
+15
View File
@@ -124,4 +124,19 @@
/// </summary>
Closest
}
/// <summary>
/// Type of the update
/// </summary>
public enum SocketUpdateType
{
/// <summary>
/// A update
/// </summary>
Update,
/// <summary>
/// A snapshot, generally send at the start of the connection
/// </summary>
Snapshot
}
}