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 GetCryptoStatsAsync(string cryptoName, string currency, CancellationToken cancellationToken); }