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

20 lines
362 B
C#

using System;
using System.Xml.Serialization;
namespace Sai.Toolkit.Core.LandXMLData
{
[XmlType("ProfSurf")]
[Serializable]
public class ProfileSurface
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("state")]
public string State { get; set; }
[XmlElement("PntList2D")]
public string PointsList2D { get; set; }
}
}