1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Schema;
- using System.Xml.Serialization;
- namespace MECF.Framework.Common.Device.Wago
- {
- public class WagoAnoIn
- {
- [XmlElement(Type = typeof(WagoAIGroup), ElementName = "AIGroup", IsNullable = false, Form = XmlSchemaForm.Qualified)]
- public List<WagoAIGroup> WagoAIGroups { get; set; }
- }
- }
|