using CryptoExchange.Net.Interfaces;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
namespace CryptoExchange.Net.Clients
{
///
public class CryptoRestClient : CryptoBaseClient, ICryptoRestClient
{
///
/// ctor
///
public CryptoRestClient()
{
}
///
/// ctor
///
///
public CryptoRestClient(IServiceProvider serviceProvider) : base(serviceProvider)
{
}
}
}