mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-13 01:12:59 +00:00
17 lines
397 B
C#
17 lines
397 B
C#
using System;
|
|
|
|
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Client for accessing REST API's for different exchanges
|
|
/// </summary>
|
|
public interface ICryptoRestClient
|
|
{
|
|
/// <summary>
|
|
/// Try get
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <returns></returns>
|
|
T TryGet<T>(Func<T> createFunc);
|
|
}
|
|
} |