整理代码
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user