GalilControllerCfg.cs 589 B

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