1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-08 00:16:27 +00:00
2019-05-13 15:39:42 +02:00

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>();
}
}
}