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

Renames, orderbook changes

This commit is contained in:
JKorf
2019-10-22 16:29:08 +02:00
parent 3ba0507a79
commit 6f75af507a
4 changed files with 310 additions and 213 deletions
@@ -14,4 +14,15 @@
/// </summary>
decimal Price { get; set; }
}
/// <summary>
/// Interface for order book entries
/// </summary>
public interface ISymbolOrderSequencedBookEntry: ISymbolOrderBookEntry
{
/// <summary>
/// Sequence of the update
/// </summary>
long Sequence { get; set; }
}
}