Files
nadekobot/src/Nadeko.Bot.Common/Common/Pokemon/SearchPokemonAbility.cs

10 lines
246 B
C#

#nullable disable
namespace NadekoBot.Common.Pokemon;
public class SearchPokemonAbility
{
public string Desc { get; set; }
public string ShortDesc { get; set; }
public string Name { get; set; }
public float Rating { get; set; }
}