elliebot/src/Ellie.Bot.Common/_common/Pokemon/PokemonNameId.cs
2023-08-03 15:11:17 +12:00

8 lines
No EOL
153 B
C#

#nullable disable
namespace Ellie.Common.Pokemon;
public class PokemonNameId
{
public int Id { get; set; }
public string Name { get; set; }
}