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

26
XMLParser.Model/Kante.cs Normal file
View File

@@ -0,0 +1,26 @@
namespace XMLParser.Model
{
public class Kante
{
decimal sohlhoeheZulauf;
decimal sohlhoeheAblauf;
Knoten knotenZulauf;
Knoten knotenAblauf;
int knotenAblaufTyp;
int knotenZulaufTyp;
bool isFiktiveLeitung = true;
Profil profil;
public string knotenZulaufTemp;
public string knotenAblaufTemp;
public decimal SohlhoeheZulauf { get => sohlhoeheZulauf; set => sohlhoeheZulauf = value; }
public decimal SohlhoeheAblauf { get => sohlhoeheAblauf; set => sohlhoeheAblauf = value; }
public Knoten KnotenZulauf { get => knotenZulauf; set => knotenZulauf = value; }
public Knoten KnotenAblauf { get => knotenAblauf; set => knotenAblauf = value; }
public int KnotenAblaufTyp { get => knotenAblaufTyp; set => knotenAblaufTyp = value; }
public int KnotenZulaufTyp { get => knotenZulaufTyp; set => knotenZulaufTyp = value; }
public bool IsFiktiveLeitung { get => isFiktiveLeitung; set => isFiktiveLeitung = value; }
public Profil Profil { get => profil; set => profil = value; }
}
}