forked from EllieBotDevs/elliebot
8 lines
No EOL
156 B
C#
8 lines
No EOL
156 B
C#
#nullable disable
|
|
namespace EllieBot.Common.Pokemon;
|
|
|
|
public class PokemonNameId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
} |