添加项目文件。
This commit is contained in:
18
RevitKits/MetroGauges/LandXMLData/SectionSurface.cs
Normal file
18
RevitKits/MetroGauges/LandXMLData/SectionSurface.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.LandXMLData
|
||||
{
|
||||
[XmlType("CrossSectSurf")]
|
||||
[Serializable]
|
||||
public class SectionSurface
|
||||
{
|
||||
[XmlAttribute("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[XmlAttribute("desc")]
|
||||
public string Description { get; set; }
|
||||
|
||||
[XmlElement("PntList2D")]
|
||||
public string SurfacePoints { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user