12 lines
257 B
C#
12 lines
257 B
C#
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class ParaCurve : TextPoint2D
|
|||
|
|
{
|
|||
|
|
[XmlAttribute("length")]
|
|||
|
|
public double CurveLength { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|