BeckhoffModuleCollection.cs 687 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections;
  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.Beckhoff.Station
  10. {
  11. public class BeckhoffModuleCollection : ArrayList
  12. {
  13. [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  14. public string Name { get; set; }
  15. [XmlElement(Type = typeof(BeckhoffStationModule), ElementName = "Axis", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  16. public BeckhoffStationModule AxisCollection { get; set; }
  17. }
  18. }