mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-15 02:13:01 +00:00
16 lines
344 B
C#
16 lines
344 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);
|
|
} |