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