NadekoBot/NadekoBot.Core/Common/Pokemon/PokemonNameId.cs

9 lines
167 B
C#
Raw Normal View History

namespace NadekoBot.Core.Common.Pokemon
{
public class PokemonNameId
{
public int Id { get; set; }
public string Name { get; set; }
}
}