8 lines
137 B
C#
8 lines
137 B
C#
namespace PokemonMarie;
|
|
|
|
public class Pokemon
|
|
{
|
|
int Levet { get; set; }
|
|
string Type { get; set; }
|
|
string Name { get; set; }
|
|
} |