2024-09-22 11:05:41 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sai.Toolkit.Core.LandXMLData;
|
|
|
|
|
|
|
2024-10-27 00:19:48 +08:00
|
|
|
|
[XmlType("ElementToMove")]
|
2024-09-22 11:05:41 +08:00
|
|
|
|
[Serializable]
|
|
|
|
|
|
public class ElementModel : ShapeModel
|
|
|
|
|
|
{
|
|
|
|
|
|
[XmlElement("Hole")]
|
|
|
|
|
|
public List<ShapeModel> Holes = new();
|
|
|
|
|
|
}
|