16 lines
376 B
C#
16 lines
376 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.LandXMLData
|
|
{
|
|
[XmlType("Superelevation")]
|
|
[Serializable]
|
|
public class SuperElevation
|
|
{
|
|
[XmlAttribute("staStart")]
|
|
public double StartStation { get; set; }
|
|
|
|
[XmlAttribute("staEnd")]
|
|
public double EndStation { get; set; }
|
|
}
|
|
}
|