25 lines
535 B
C#
25 lines
535 B
C#
namespace Project_Periodensystem.Model
|
|
{
|
|
public class ElementModel
|
|
{
|
|
public string Symbol { get; set; } = "";
|
|
public int Number { get; set; }
|
|
public int Row { get; set; }
|
|
public int Column { get; set; }
|
|
public ElementSeries Series { get; set; }
|
|
}
|
|
|
|
public enum ElementSeries
|
|
{
|
|
Alkali,
|
|
AlkalineEarth,
|
|
Transition,
|
|
PostTransition,
|
|
Metalloid,
|
|
Nonmetal,
|
|
Halogen,
|
|
NobleGas,
|
|
Lanthanide,
|
|
Actinide
|
|
}
|
|
} |