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

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