Contracts hinzugefügt
This commit is contained in:
20
XMLParser.Model/Profil.cs
Normal file
20
XMLParser.Model/Profil.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user