整理代码
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData
|
||||
{
|
||||
[XmlType("BaseModel")]
|
||||
[Serializable]
|
||||
public class BaseModel
|
||||
{
|
||||
public BaseModel()
|
||||
{
|
||||
Vertices = new List<Point3D>();
|
||||
}
|
||||
|
||||
[XmlElement("Vertex")]
|
||||
public List<Point3D> Vertices;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user