Files
ShrlAlgoToolkit/Sai.RvKits/RvIndependent/MetroGauges/LandXMLData/SectionSurface.cs
2024-09-22 11:05:41 +08:00

20 lines
373 B
C#

using System;
using System.Xml.Serialization;
namespace Sai.Toolkit.Core.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; }
}
}