| 1234567891011121314 | using System.Collections.Generic;using System.Xml.Schema;using System.Xml.Serialization;namespace MECF.Framework.Common.Simulator{    [XmlRoot("SimulatorIOMapConfig")]    public class SimulatorIOMapConfig    {        [XmlElement(Type = typeof(SimulatorIOMapItem), ElementName = "SimulatorIOMapItem", IsNullable = false, Form = XmlSchemaForm.Qualified)]        public List<SimulatorIOMapItem> SimulatorIOMapConfigs { get; set; }    }}
 |