Files
ShrlAlgoToolkit/Sai.RvKits/RvIndependent/MetroGauges/LandXMLData/LoftShapeModel.cs

12 lines
200 B
C#
Raw Normal View History

2024-09-22 11:05:41 +08:00
using System.Xml.Serialization;
namespace Sai.Toolkit.Core.LandXMLData
{
[XmlType("LoftShape")]
public class LoftShapeModel : ShapeModel
{
[XmlAttribute("depth")]
public double Depth;
}
}