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 SimulatorIOMapConfigs { get; set; } } }