mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-11-06 05:17:23 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
namespace CryptoExchange.Net.OrderBook
|
|
{
|
|
public class OrderBookEntry : ISymbolOrderBookEntry
|
|
{
|
|
public decimal Quantity { get; set; }
|
|
public decimal Price { get; set; }
|
|
|
|
public OrderBookEntry(decimal price, decimal quantity)
|
|
{
|
|
Quantity = quantity;
|
|
Price = price;
|
|
}
|
|
}
|
|
}
|