mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-09 17:06:19 +00:00
27 lines
918 B
C#
27 lines
918 B
C#
using CryptoExchange.Net.Interfaces;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CryptoExchange.Net.OrderBook
|
|
{
|
|
internal class ProcessQueueItem
|
|
{
|
|
public long StartUpdateId { get; set; }
|
|
public long EndUpdateId { get; set; }
|
|
public IEnumerable<ISymbolOrderBookEntry> Bids { get; set; } = new List<ISymbolOrderBookEntry>();
|
|
public IEnumerable<ISymbolOrderBookEntry> Asks { get; set; } = new List<ISymbolOrderBookEntry>();
|
|
}
|
|
|
|
internal class InitialOrderBookItem
|
|
{
|
|
public long StartUpdateId { get; set; }
|
|
public long EndUpdateId { get; set; }
|
|
public IEnumerable<ISymbolOrderBookEntry> Bids { get; set; } = new List<ISymbolOrderBookEntry>();
|
|
public IEnumerable<ISymbolOrderBookEntry> Asks { get; set; } = new List<ISymbolOrderBookEntry>();
|
|
}
|
|
|
|
internal class ChecksumItem
|
|
{
|
|
public int Checksum { get; set; }
|
|
}
|
|
}
|