Pokespearean/Pokespearean.Models/Pokemon/PokeResult.cs

9 lines
153 B
C#

namespace Pokespearean.Models.Pokemon
{
public class PokeResult
{
public string Name { get; set; }
public string Description { get; set; }
}
}