27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|