mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
17 lines
385 B
C#
17 lines
385 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CryptoExchange.Net.OrderBook
|
|
{
|
|
public class ProcessBufferEntry
|
|
{
|
|
public long FirstSequence { get; set; }
|
|
public long LastSequence { get; set; }
|
|
public List<ProcessEntry> Entries { get; set; }
|
|
|
|
public ProcessBufferEntry()
|
|
{
|
|
Entries = new List<ProcessEntry>();
|
|
}
|
|
}
|
|
}
|