RobotTool.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TeamAAS_VP.Models
  8. {
  9. /// <summary>
  10. /// 机器人工具坐标
  11. /// </summary>
  12. public class RobotTool:BindableBase
  13. {
  14. private int _Number;
  15. /// <summary>
  16. /// 编号
  17. /// </summary>
  18. public int Number
  19. {
  20. get { return _Number; }
  21. set { SetProperty(ref _Number,value); }
  22. }
  23. private double _X;
  24. /// <summary>
  25. /// X坐标
  26. /// </summary>
  27. public double X
  28. {
  29. get { return _X; }
  30. set { SetProperty(ref _X, value); }
  31. }
  32. private double _Y;
  33. /// <summary>
  34. /// Y坐标
  35. /// </summary>
  36. public double Y
  37. {
  38. get { return _Y; }
  39. set { SetProperty(ref _Y, value); }
  40. }
  41. private double _Z;
  42. /// <summary>
  43. /// Z坐标
  44. /// </summary>
  45. public double Z
  46. {
  47. get { return _Z; }
  48. set { SetProperty(ref _Z, value); }
  49. }
  50. }
  51. }