mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 16:36:15 +00:00
Fixed typo Comon -> Common
This commit is contained in:
parent
7a195f662c
commit
8c24b46fb3
@ -1,9 +1,9 @@
|
|||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Balance data
|
/// Balance data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Balance: BaseComonObject
|
public class Balance: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The asset name
|
/// The asset name
|
@ -1,9 +1,9 @@
|
|||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base class for comon objects
|
/// Base class for common objects
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class BaseComonObject
|
public class BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The source object the data is derived from
|
/// The source object the data is derived from
|
@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Order type
|
/// Order type
|
@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Kline data
|
/// Kline data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Kline: BaseComonObject
|
public class Kline: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Opening time of the kline
|
/// Opening time of the kline
|
@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Order data
|
/// Order data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Order: BaseComonObject
|
public class Order: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id of the order
|
/// Id of the order
|
@ -2,12 +2,12 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Order book data
|
/// Order book data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class OrderBook: BaseComonObject
|
public class OrderBook: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// List of bids
|
/// List of bids
|
@ -1,4 +1,4 @@
|
|||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Order book entry
|
/// Order book entry
|
@ -2,12 +2,12 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id of an order
|
/// Id of an order
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class OrderId: BaseComonObject
|
public class OrderId: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id of an order
|
/// Id of an order
|
@ -1,9 +1,9 @@
|
|||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Position data
|
/// Position data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Position: BaseComonObject
|
public class Position: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id of the position
|
/// Id of the position
|
@ -1,9 +1,9 @@
|
|||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Symbol data
|
/// Symbol data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Symbol: BaseComonObject
|
public class Symbol: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Name of the symbol
|
/// Name of the symbol
|
@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ticker data
|
/// Ticker data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Ticker: BaseComonObject
|
public class Ticker: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Symbol
|
/// Symbol
|
@ -1,11 +1,11 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.ComonObjects
|
namespace CryptoExchange.Net.CommonObjects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Trade data
|
/// Trade data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Trade: BaseComonObject
|
public class Trade: BaseCommonObject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Symbol of the trade
|
/// Symbol of the trade
|
@ -1,4 +1,4 @@
|
|||||||
using CryptoExchange.Net.ComonObjects;
|
using CryptoExchange.Net.CommonObjects;
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||||||
namespace CryptoExchange.Net.Interfaces
|
namespace CryptoExchange.Net.Interfaces
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Comon rest client endpoints
|
/// Common rest client endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IBaseRestClient
|
public interface IBaseRestClient
|
||||||
{
|
{
|
||||||
@ -68,7 +68,7 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="symbol">The symbol to get the book for</param>
|
/// <param name="symbol">The symbol to get the book for</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<WebCallResult<ComonObjects.OrderBook>> GetOrderBookAsync(string symbol);
|
Task<WebCallResult<CommonObjects.OrderBook>> GetOrderBookAsync(string symbol);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The recent trades for a symbol
|
/// The recent trades for a symbol
|
||||||
@ -124,7 +124,7 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Comon futures endpoints
|
/// Common futures endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IFuturesClient: IBaseRestClient
|
public interface IFuturesClient: IBaseRestClient
|
||||||
{
|
{
|
||||||
@ -149,7 +149,7 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Comon spot endpoints
|
/// Common spot endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ISpotClient: IBaseRestClient
|
public interface ISpotClient: IBaseRestClient
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user