Files
ShrlAlgoToolkit/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/SectionSurface.cs

19 lines
435 B
C#
Raw Normal View History

using System.Xml.Serialization;
namespace ShrlAlgo.RvKits.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; }
}
}