21 lines
595 B
C#
21 lines
595 B
C#
namespace XMLParser.Model
|
|
{
|
|
public class Profil
|
|
{
|
|
int profilart;
|
|
int profilbreite;
|
|
int profilhoehe;
|
|
|
|
public Profil(int profilart, int profilbreite, int profilhoehe)
|
|
{
|
|
Profilart = profilart;
|
|
Profilbreite = profilbreite;
|
|
Profilhoehe = profilhoehe;
|
|
}
|
|
|
|
public int Profilart { get => profilart; set => profilart = value; }
|
|
public int Profilbreite { get => profilbreite; set => profilbreite = value; }
|
|
public int Profilhoehe { get => profilhoehe; set => profilhoehe = value; }
|
|
}
|
|
}
|