11 lines
197 B
C#
11 lines
197 B
C#
using Pokespearean.Models.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pokespearean.Services
|
|
{
|
|
public interface IShakespeareService
|
|
{
|
|
Task<WebResult> ToShakespearean(string text);
|
|
}
|
|
}
|