1
0
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:
Jkorf 2022-01-03 11:33:07 +01:00
parent 7a195f662c
commit 8c24b46fb3
13 changed files with 28 additions and 28 deletions

View File

@ -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

View File

@ -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

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace CryptoExchange.Net.ComonObjects
namespace CryptoExchange.Net.CommonObjects
{
/// <summary>
/// Order type

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1,4 +1,4 @@
namespace CryptoExchange.Net.ComonObjects
namespace CryptoExchange.Net.CommonObjects
{
/// <summary>
/// Order book entry

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
{