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