mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-06 23:46:12 +00:00
25 lines
551 B
C#
25 lines
551 B
C#
using CryptoExchange.Net.Interfaces;
|
|
using System;
|
|
|
|
namespace CryptoExchange.Net.Clients
|
|
{
|
|
/// <inheritdoc />
|
|
public class CryptoSocketClient : CryptoBaseClient, ICryptoSocketClient
|
|
{
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
public CryptoSocketClient()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="serviceProvider"></param>
|
|
public CryptoSocketClient(IServiceProvider serviceProvider) : base(serviceProvider)
|
|
{
|
|
}
|
|
}
|
|
}
|