using PokemonSleep.Web.Models; using PokemonSleepAPI.Models; using System.Threading.Tasks; namespace PokemonSleep.Web.Service.IService { public interface IPokeAPI { Task GetPokemonAsync(string species); Task GetPokemonByUrlAsync(string url); Task> GetAllPokemonWithDetailsAsync(); } }