forked from EllieBotDevs/elliebot
10 lines
242 B
C#
10 lines
242 B
C#
|
#nullable disable
|
||
|
namespace Ellie.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; }
|
||
|
}
|