SimulatorIOMapConfig.cs 449 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using System.Xml.Schema;
  3. using System.Xml.Serialization;
  4. namespace MECF.Framework.Common.Simulator
  5. {
  6. [XmlRoot("SimulatorIOMapConfig")]
  7. public class SimulatorIOMapConfig
  8. {
  9. [XmlElement(Type = typeof(SimulatorIOMapItem), ElementName = "SimulatorIOMapItem", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  10. public List<SimulatorIOMapItem> SimulatorIOMapConfigs { get; set; }
  11. }
  12. }