14 lines
339 B
C#
14 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CH.CryptoStats.Abstractions;
|
|
|
|
public interface ICryptoStats
|
|
{
|
|
public Task<CryptoStats> GetCryptoStatsAsync(string cryptoName, string currency, CancellationToken cancellationToken);
|
|
}
|