using System; using System.Xml.Serialization; namespace Sai.Toolkit.Core.LandXMLData { [XmlType("Shape")] [Serializable] public class ShapeModel : Location { public ShapeModel() { Bases = new List(); } [XmlElement("Base")] public List Bases; [XmlAttribute("type")] public ShapeType Type; } }