using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Schema; using System.Xml.Serialization; namespace MECF.Framework.Common.Device.Wago { public class WagoAOGroup { [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")] public string Name { get; set; } [XmlElement(Type = typeof(WagoAO), ElementName = "AO", IsNullable = false, Form = XmlSchemaForm.Qualified)] public List WagoAOs { get; set; } } }