Contracts hinzugefügt
This commit is contained in:
13
XMLParser.Model/Knoten.cs
Normal file
13
XMLParser.Model/Knoten.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace XMLParser.Model
|
||||
{
|
||||
public class Knoten
|
||||
{
|
||||
EKnotenTyp knotenTyp;
|
||||
Anschlusspunkt anschlusspunkt;
|
||||
Schacht schacht;
|
||||
|
||||
public EKnotenTyp KnotenTyp { get => knotenTyp; set => knotenTyp = value; }
|
||||
public Schacht Schacht { get => schacht; set => schacht = value; }
|
||||
public Anschlusspunkt Anschlusspunkt { get => anschlusspunkt; set => anschlusspunkt = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user