mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-14 03:16:31 +00:00
20 lines
573 B
C#
20 lines
573 B
C#
using CryptoExchange.Net.Objects;
|
|
|
|
namespace CryptoExchange.Net
|
|
{
|
|
/// <summary>
|
|
/// Base socket API client for interaction with a websocket API
|
|
/// </summary>
|
|
public abstract class SocketApiClient : BaseApiClient
|
|
{
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="options">The base client options</param>
|
|
/// <param name="apiOptions">The Api client options</param>
|
|
public SocketApiClient(BaseClientOptions options, ApiClientOptions apiOptions): base(options, apiOptions)
|
|
{
|
|
}
|
|
}
|
|
}
|