using MECF.Framework.Common.Beckhoff.AxisProvider; 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.LinMot { [XmlRoot("LinmotConfig")] public class LinMotDeviceConfigCfg { [XmlElement(Type = typeof(LinmotDeviceConfig), ElementName = "LinmotDeviceConfig", IsNullable = false, Form = XmlSchemaForm.Qualified)] public List LinmotDeviceConfigs { get; set; } } }