mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-10 01:16:24 +00:00
21 lines
535 B
C#
21 lines
535 B
C#
using System;
|
|
using CryptoExchange.Net.Objects.Options;
|
|
|
|
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Base class for rest API implementations
|
|
/// </summary>
|
|
public interface IRestClient: IDisposable
|
|
{
|
|
/// <summary>
|
|
/// The options provided for this client
|
|
/// </summary>
|
|
ExchangeOptions ClientOptions { get; }
|
|
|
|
/// <summary>
|
|
/// The total amount of requests made with this client
|
|
/// </summary>
|
|
int TotalRequestsMade { get; }
|
|
}
|
|
} |