Files
Shrlalgo.RvKits/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/SectionSurface.cs
2025-04-24 20:56:44 +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; }
}
}