Reorganizing the structure of the project, adding unit testing, adding PokemonService and ShakespeareService.
This commit is contained in:
18
Pokespearean.Models/Shakespeare/ShakespearResponse.cs
Normal file
18
Pokespearean.Models/Shakespeare/ShakespearResponse.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace Pokespearean.Models.Shakespeare
|
||||
{
|
||||
public class ShakespearResponse
|
||||
{
|
||||
public ShakespearResponseSuccess Success { get; set; }
|
||||
public ShakespearResponseContents Contents { get; set; }
|
||||
}
|
||||
public class ShakespearResponseSuccess
|
||||
{
|
||||
public int Total { get; set; }
|
||||
}
|
||||
public class ShakespearResponseContents
|
||||
{
|
||||
public string Translated { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string Translation { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user