1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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 MeasureAreaModel
- {
- /// <summary>
- /// 线颜色
- /// </summary>
- [XmlElement("lineColor")]
- public int lineColor { get; set; }
- /// <summary>
- /// 线宽
- /// </summary>
- [XmlElement("lineWidth")]
- public int lineWidth { get; set; }
- /// <summary>
- /// 线样式
- /// </summary>
- [XmlElement("lineStyle")]
- public int lineStyle { get; set; }
- /// <summary>
- /// 报告输出
- /// </summary>
- [XmlElement("reportOutput")]
- public bool reportOutput { get; set; }
- }
- }
|