11 lines
206 B
C#
11 lines
206 B
C#
using Pokespearean.Models.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pokespearean.Services
|
|
{
|
|
public interface IPokemonService
|
|
{
|
|
Task<WebResult> GetPokemonDescription(string pokemonName);
|
|
}
|
|
}
|