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> /// <summary>
/// Balance data /// Balance data
/// </summary> /// </summary>
public class Balance: BaseComonObject public class Balance: BaseCommonObject
{ {
/// <summary> /// <summary>
/// The asset name /// The asset name

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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