mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
10 lines
246 B
C#
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; }
|
|
} |