using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace SmartCoalApplication.Base.SettingModel { /// /// 电动偏光配置信息 /// [XmlRoot("ROOT")] public class MotorizedLightModel { [XmlElement("PortName")] public string PortName { get; set; } [XmlElement("BaudRate")] public int BaudRate { get; set; } [XmlElement("LightType")] public string LightType { get; set; } } }