Files
RevitArchive/RevitKits/MetroGauges/LandXMLData/SectionSurface.cs
2026-02-23 14:58:05 +08:00

19 lines
447 B
C#

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; }
}
}