Contracts hinzugefügt

This commit is contained in:
Husky
2021-08-15 12:04:09 +02:00
parent 5c9770bf45
commit 538ec3d00b
36 changed files with 201 additions and 97 deletions

20
XMLParser.Model/Profil.cs Normal file
View File

@@ -0,0 +1,20 @@
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; }
}
}