mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-14 01:42:55 +00:00
17 lines
465 B
C#
17 lines
465 B
C#
using CryptoExchange.Net.Authentication;
|
|
|
|
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Base api client
|
|
/// </summary>
|
|
public interface IBaseApiClient
|
|
{
|
|
/// <summary>
|
|
/// Set the API credentials for this API client
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="credentials"></param>
|
|
void SetApiCredentials<T>(T credentials) where T : ApiCredentials;
|
|
}
|
|
} |