Files
ShrlAlgoToolkit/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/LoftShapeModel.cs
2025-04-24 20:56:10 +08:00

12 lines
249 B
C#

using System.Xml.Serialization;
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData
{
[XmlType("LoftShape")]
public class LoftShapeModel : ShapeModel
{
[XmlAttribute("depth")]
public double Depth;
}
}