MeasureAreaModel.cs 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 MeasureAreaModel
  14. {
  15. /// <summary>
  16. /// 线颜色
  17. /// </summary>
  18. [XmlElement("lineColor")]
  19. public int lineColor { get; set; }
  20. /// <summary>
  21. /// 线宽
  22. /// </summary>
  23. [XmlElement("lineWidth")]
  24. public int lineWidth { get; set; }
  25. /// <summary>
  26. /// 线样式
  27. /// </summary>
  28. [XmlElement("lineStyle")]
  29. public int lineStyle { get; set; }
  30. /// <summary>
  31. /// 报告输出
  32. /// </summary>
  33. [XmlElement("reportOutput")]
  34. public bool reportOutput { get; set; }
  35. }
  36. }