12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace SmartCoalApplication.Base.SettingModel
- {
- /// <summary>
- /// 电动偏光配置信息
- /// </summary>
- [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; }
- }
- }
|