Contracts hinzugefügt
This commit is contained in:
21
XMLParser.Model/Geometriedaten.cs
Normal file
21
XMLParser.Model/Geometriedaten.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace XMLParser.Model
|
||||
{
|
||||
public class Geometriedaten
|
||||
{
|
||||
List<PolyKante> kanten;
|
||||
|
||||
public List<PolyKante> Kanten
|
||||
{
|
||||
get
|
||||
{
|
||||
return kanten;
|
||||
}
|
||||
set
|
||||
{
|
||||
kanten = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user