This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/Ellie.Bot.Common/_common/Pokemon/SearchPokemonAbility.cs

10 lines
242 B
C#
Raw Normal View History

2023-07-15 22:25:21 +12:00
#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; }
}