123456789101112131415161718192021222324252627282930313233 |
- 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 GuideStyleModel
- {
- /// <summary>
- /// 辅助线样式-线条样式
- /// </summary>
- [XmlElement("LineStyle")]
- public int lineStyle { get; set; }
- /// <summary>
- /// 辅助线样式-线条颜色
- /// </summary>
- [XmlElement("LineColour")]
- public int lineColour { get; set; }
- /// <summary>
- /// 辅助线样式-线条宽度
- /// </summary>
- [XmlElement("LineWidth")]
- public decimal lineWidth { get; set; }
- }
- }
|