mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 16:36:15 +00:00
18 lines
360 B
C#
18 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
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;
|
|
}
|
|
}
|