12 lines
255 B
C#
12 lines
255 B
C#
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData;
|
|||
|
|
|
|||
|
|
[XmlType("ElementToMove")]
|
|||
|
|
[Serializable]
|
|||
|
|
public class ElementModel : ShapeModel
|
|||
|
|
{
|
|||
|
|
[XmlElement("Hole")]
|
|||
|
|
public List<ShapeModel> Holes = new();
|
|||
|
|
}
|