| 12345678910111213141516171819202122 | using System;using System.Collections;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.Beckhoff.Station{    public class BeckhoffStationModule     {        [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string Name { get; set; }        [XmlElement(Type = typeof(BeckhoffStationAxis), ElementName = "Axis", IsNullable = false, Form = XmlSchemaForm.Qualified)]        public List<BeckhoffStationAxis> Axises { get; set; }    }}
 |