Pokespearean/Pokespearean.Models/Pokemon/PokeResult.cs

9 lines
153 B
C#
Raw Normal View History

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