1
0

PointModel.cs 377 B

123456789101112131415161718192021
  1. namespace Admin.Tools.Captcha
  2. {
  3. public class PointModel
  4. {
  5. /// <summary>
  6. /// x坐标
  7. /// </summary>
  8. public int X { get; set; }
  9. /// <summary>
  10. /// y坐标
  11. /// </summary>
  12. public int Y { get; set; }
  13. public PointModel(int x, int y)
  14. {
  15. X = x;
  16. Y = y;
  17. }
  18. }
  19. }