using Pokespearean.Models.Generic; using System.Threading.Tasks; namespace Pokespearean.Services { public interface IPokemonService { Task GetPokemonDescription(string pokemonName); } }