using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace SmartCoalApplication.Base.SettingModel
{
///
/// 设置 - 测量区域
///
[XmlRoot("ROOT")]
public class MeasureAreaModel
{
///
/// 线颜色
///
[XmlElement("lineColor")]
public int lineColor { get; set; }
///
/// 线宽
///
[XmlElement("lineWidth")]
public int lineWidth { get; set; }
///
/// 线样式
///
[XmlElement("lineStyle")]
public int lineStyle { get; set; }
///
/// 报告输出
///
[XmlElement("reportOutput")]
public bool reportOutput { get; set; }
}
}