using System;
using CryptoExchange.Net.Objects.Options;
namespace CryptoExchange.Net.Interfaces
{
///
/// Base class for rest API implementations
///
public interface IRestClient: IDisposable
{
///
/// The options provided for this client
///
ExchangeOptions ClientOptions { get; }
///
/// The total amount of requests made with this client
///
int TotalRequestsMade { get; }
///
/// The exchange name
///
string Exchange { get; }
}
}