using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; using SigmaDrawerElement; namespace GeoSigma.SigmaDrawerElement { /// /// The drawer data. /// [XmlRoot("Data")] public class DrawerData : List { /// /// Initializes a new instance of the class. /// public DrawerData() : base() { } } }