1234567891011121314151617181920 |
- 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.PowerSupplier
- {
- [XmlRoot("PowerSupplierConfig")]
- public class PowerSupplierDeviceConfigCfg
- {
- [XmlElement(Type = typeof(PowerSupplierDeviceConfig), ElementName = "PowerSupplierDeviceConfig", IsNullable = false, Form = XmlSchemaForm.Qualified)]
- public List<PowerSupplierDeviceConfig> PowerSupplierDeviceConfigs { get; set; }
- }
- }
|