| 1234567891011121314151617181920212223 | 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 Station    {        [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string Name { get; set; }        [XmlAttribute(AttributeName = "Position", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string Position { get; set; }        [XmlAttribute(AttributeName = "ModifiedDate", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string ModifiedDate { get; set; }    }}
 |