Contracts hinzugefügt
This commit is contained in:
25
XMLParser.Model/PolyKante.cs
Normal file
25
XMLParser.Model/PolyKante.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
namespace XMLParser.Model
|
||||
{
|
||||
public class PolyKante
|
||||
{
|
||||
PolyKanteAttribute start;
|
||||
PolyKanteAttribute ende;
|
||||
|
||||
public PolyKanteAttribute Start { get => start; set => start = value; }
|
||||
public PolyKanteAttribute Ende { get => ende; set => ende = value; }
|
||||
}
|
||||
|
||||
public class PolyKanteAttribute
|
||||
{
|
||||
decimal rechtswert;
|
||||
decimal hochwert;
|
||||
decimal punkthoehe;
|
||||
string punktattributAbwasser;
|
||||
|
||||
public decimal Rechtswert { get => rechtswert; set => rechtswert = value; }
|
||||
public decimal Hochwert { get => hochwert; set => hochwert = value; }
|
||||
public decimal Punkthoehe { get => punkthoehe; set => punkthoehe = value; }
|
||||
public string PunktattributAbwasser { get => punktattributAbwasser; set => punktattributAbwasser = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user