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