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/EllieBot/_common/Pokemon/PokemonNameId.cs

8 lines
156 B
C#
Raw Normal View History

2024-09-20 11:23:21 +00:00
#nullable disable
namespace EllieBot.Common.Pokemon;
public class PokemonNameId
{
public int Id { get; set; }
public string Name { get; set; }
}