using CryptoExchange.Net.Authentication; namespace CryptoExchange.Net.Interfaces { /// /// Base api client /// public interface IBaseApiClient { /// /// Base address /// string BaseAddress { get; } /// /// Set the API credentials for this API client /// /// /// void SetApiCredentials(T credentials) where T : ApiCredentials; } }