StationPositionCfg.cs 494 B

123456789101112131415161718
  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.Beckhoff.Station
  9. {
  10. public class StationPositionCfg
  11. {
  12. [XmlElement(Type = typeof(BeckhoffStationModule), ElementName = "Module", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  13. public List<BeckhoffStationModule> Module { get;set; }
  14. }
  15. }