using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CH.CryptoStats.Abstractions; public interface ICryptoStats { public Task GetCryptoStats(string cryptoName, string currency, CancellationToken cancellationToken); public Task ParseCryptoStats(HttpResponseMessage result, string currency, CancellationToken cancellationToken); }