mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
14 lines
292 B
C#
14 lines
292 B
C#
namespace CryptoExchange.Net.CommonObjects
|
|
{
|
|
/// <summary>
|
|
/// Id of an order
|
|
/// </summary>
|
|
public class OrderId: BaseCommonObject
|
|
{
|
|
/// <summary>
|
|
/// Id of an order
|
|
/// </summary>
|
|
public string Id { get; set; } = string.Empty;
|
|
}
|
|
}
|