Files
XMLParser/XMLParser.Model/Profil.cs
2021-08-15 12:04:09 +02:00

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; }
}
}