19 lines
448 B
C#
19 lines
448 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|