GalilDigIn.cs 488 B

123456789101112131415161718
  1. using MECF.Framework.Common.Device.Wago;
  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. public class GalilDigIn
  12. {
  13. [XmlElement(Type = typeof(GalilDI), ElementName = "DI", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  14. public List<GalilDI> DIs { get; set; }
  15. }
  16. }