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