20 lines
373 B
C#
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; }
|
|
}
|
|
}
|