You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
790 B

3 years ago
using System.Collections.Generic;
namespace EC.Entity.Warning
{
public class DrawShape
{
public DrawShape()
{
PointList = new List<DrawPoint>();
}
//public DrawShapeModel(string ip, StrokeEx storke)
//{
// List<StylusPoint> stylusPoints = storke.StylusPoints.ToList();
// foreach (StylusPoint stylusPoint in stylusPoints)
// {
// }
//}
public string Ip { get; set; }
/// <summary>
/// 画图形状
/// </summary>
public int DrawType { get; set; }
/// <summary>
/// 预警级别
/// </summary>
public int WarningLevel { get; set; }
public List<DrawPoint> PointList { get; set; }
/// <summary>
/// 预警方向 Line 上(0)下(1)左(2)右(3)
/// </summary>
public int WaringDirection { get; set; }
}
}