GuideStyleModel.cs 852 B

123456789101112131415161718192021222324252627282930313233
  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 GuideStyleModel
  14. {
  15. /// <summary>
  16. /// 辅助线样式-线条样式
  17. /// </summary>
  18. [XmlElement("LineStyle")]
  19. public int lineStyle { get; set; }
  20. /// <summary>
  21. /// 辅助线样式-线条颜色
  22. /// </summary>
  23. [XmlElement("LineColour")]
  24. public int lineColour { get; set; }
  25. /// <summary>
  26. /// 辅助线样式-线条宽度
  27. /// </summary>
  28. [XmlElement("LineWidth")]
  29. public decimal lineWidth { get; set; }
  30. }
  31. }