PowerSupplierDeviceConfigCfg.cs 646 B

1234567891011121314151617181920
  1. using MECF.Framework.Common.Beckhoff.AxisProvider;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Xml.Schema;
  8. using System.Xml.Serialization;
  9. namespace MECF.Framework.Common.Device.PowerSupplier
  10. {
  11. [XmlRoot("PowerSupplierConfig")]
  12. public class PowerSupplierDeviceConfigCfg
  13. {
  14. [XmlElement(Type = typeof(PowerSupplierDeviceConfig), ElementName = "PowerSupplierDeviceConfig", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  15. public List<PowerSupplierDeviceConfig> PowerSupplierDeviceConfigs { get; set; }
  16. }
  17. }