MotorizedLightModel.cs 581 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Serialization;
  7. namespace SmartCoalApplication.Base.SettingModel
  8. {
  9. /// <summary>
  10. /// 电动偏光配置信息
  11. /// </summary>
  12. [XmlRoot("ROOT")]
  13. public class MotorizedLightModel
  14. {
  15. [XmlElement("PortName")]
  16. public string PortName { get; set; }
  17. [XmlElement("BaudRate")]
  18. public int BaudRate { get; set; }
  19. [XmlElement("LightType")]
  20. public string LightType { get; set; }
  21. }
  22. }