| 123456789101112131415161718 | using System.Xml.Schema;using System.Xml.Serialization;namespace MECF.Framework.Common.Simulator{    public class SimulatorIOMapItem    {        [XmlAttribute(AttributeName = "SourceIOName", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string SourceIOName { get; set; }        [XmlAttribute(AttributeName = "TargetIONameA", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string TargetIONameA { get; set; }        [XmlAttribute(AttributeName = "TargetIONameB", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string TargetIONameB { get; set; }    }}
 |