namespace Admin.Tools.Captcha { public class PointModel { /// /// x坐标 /// public int X { get; set; } /// /// y坐标 /// public int Y { get; set; } public PointModel(int x, int y) { X = x; Y = y; } } }