mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-10-28 00:48:40 +00:00
18 lines
345 B
C#
18 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CryptoExchange.Net.ExchangeInterfaces
|
|
{
|
|
/// <summary>
|
|
/// Common order id
|
|
/// </summary>
|
|
public interface ICommonOrderId
|
|
{
|
|
/// <summary>
|
|
/// Id of the order
|
|
/// </summary>
|
|
public string CommonId { get; }
|
|
}
|
|
}
|