SimulatorIOMapItem.cs 638 B

123456789101112131415161718
  1. using System.Xml.Schema;
  2. using System.Xml.Serialization;
  3. namespace MECF.Framework.Common.Simulator
  4. {
  5. public class SimulatorIOMapItem
  6. {
  7. [XmlAttribute(AttributeName = "SourceIOName", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  8. public string SourceIOName { get; set; }
  9. [XmlAttribute(AttributeName = "TargetIONameA", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  10. public string TargetIONameA { get; set; }
  11. [XmlAttribute(AttributeName = "TargetIONameB", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  12. public string TargetIONameB { get; set; }
  13. }
  14. }