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

12 lines
200 B
C#

using System.Xml.Serialization;
namespace Sai.Toolkit.Core.LandXMLData
{
[XmlType("LoftShape")]
public class LoftShapeModel : ShapeModel
{
[XmlAttribute("depth")]
public double Depth;
}
}