using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CCDCount.MODEL.ShuLiModel { public class BoundingRectangleMdoel { public List points { get; set; } public Point CenterPoint { get; set; } public double Width { get; set; } public double Height { get; set; } public double Angle { get; set; } } }