WagoDIGroup.cs 595 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Schema;
  7. using System.Xml.Serialization;
  8. namespace MECF.Framework.Common.Device.Wago
  9. {
  10. public class WagoDIGroup
  11. {
  12. [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  13. public string Name { get; set; }
  14. [XmlElement(Type = typeof(WagoDI), ElementName = "DI", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  15. public List<WagoDI> WagoDIs { get; set; }
  16. }
  17. }