FestoControllerCfg.cs 595 B

12345678910111213141516171819
  1. using MECF.Framework.Common.Device.PowerSupplier;
  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.Festo
  10. {
  11. [XmlRoot("FestoControllerConfig")]
  12. public class FestoControllerCfg
  13. {
  14. [XmlElement(Type = typeof(FestoDeviceConfig), ElementName = "FestoDeviceConfig", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  15. public List<FestoDeviceConfig> FestoDeviceConfigs { get; set; }
  16. }
  17. }