mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
17 lines
388 B
C#
17 lines
388 B
C#
using CryptoExchange.Net.Objects;
|
|
|
|
namespace CryptoExchange.Net.OrderBook
|
|
{
|
|
public class ProcessEntry
|
|
{
|
|
public ISymbolOrderBookEntry Entry { get; set; }
|
|
public OrderBookEntryType Type { get; set; }
|
|
|
|
public ProcessEntry(OrderBookEntryType type, ISymbolOrderBookEntry entry)
|
|
{
|
|
Type = type;
|
|
Entry = entry;
|
|
}
|
|
}
|
|
}
|