mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 16:36:15 +00:00
18 lines
399 B
C#
18 lines
399 B
C#
namespace CryptoExchange.Net.ComonObjects
|
|
{
|
|
/// <summary>
|
|
/// Order book entry
|
|
/// </summary>
|
|
public class OrderBookEntry
|
|
{
|
|
/// <summary>
|
|
/// Quantity of the entry
|
|
/// </summary>
|
|
public decimal Quantity { get; set; }
|
|
/// <summary>
|
|
/// Price of the entry
|
|
/// </summary>
|
|
public decimal Price { get; set; }
|
|
}
|
|
}
|