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