| 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 BeckhoffModuleCollection : ArrayList    {        [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string Name { get; set; }        [XmlElement(Type = typeof(BeckhoffStationModule), ElementName = "Axis", IsNullable = false, Form = XmlSchemaForm.Qualified)]        public BeckhoffStationModule AxisCollection { get; set; }    }}
 |