using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json; using System.Threading.Tasks; using CH.CryptoStats.Abstractions; namespace CH.CryptoStats.CoinGecko; public class CoinGecko : ICryptoStats { //https://docs.coingecko.com/reference/coins-id public Task GetCryptoStatsAsync(string cryptoName, string currency, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task ParseCryptoStats(JsonDocument jsonDocument, string currency, CancellationToken cancellationToken) { throw new NotImplementedException(); } }