mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-12 17:03:10 +00:00
d533557324
Websocket refactoring
18 lines
497 B
C#
18 lines
497 B
C#
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Base rest API client
|
|
/// </summary>
|
|
public interface IRestApiClient : IBaseApiClient
|
|
{
|
|
/// <summary>
|
|
/// The factory for creating requests. Used for unit testing
|
|
/// </summary>
|
|
IRequestFactory RequestFactory { get; set; }
|
|
|
|
/// <summary>
|
|
/// Total amount of requests made with this API client
|
|
/// </summary>
|
|
int TotalRequestsMade { get; set; }
|
|
}
|
|
} |