Contracts hinzugefügt
This commit is contained in:
24
XMLParser.Model/Geometrie.cs
Normal file
24
XMLParser.Model/Geometrie.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace XMLParser.Model
|
||||
{
|
||||
public class Geometrie
|
||||
{
|
||||
Geometriedaten geometriedaten;
|
||||
PolyKanteAttribute rap1;
|
||||
PolyKanteAttribute rap2;
|
||||
|
||||
public Geometriedaten Geometriedaten
|
||||
{
|
||||
get
|
||||
{
|
||||
return geometriedaten;
|
||||
}
|
||||
set
|
||||
{
|
||||
geometriedaten = value;
|
||||
}
|
||||
}
|
||||
|
||||
public PolyKanteAttribute Rap1 { get => rap1; set => rap1 = value; }
|
||||
public PolyKanteAttribute Rap2 { get => rap2; set => rap2 = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user