PickScrewAccuracyAnalyzerrConfigModel.cs 780 B

1234567891011121314151617181920212223242526272829303132
  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.Torque
  8. {
  9. public class PickScrewAccuracyAnalyzerrConfigModel : BindableBase
  10. {
  11. private int _MoveSpeed = 100;
  12. /// <summary>
  13. /// 机器人移动速度
  14. /// </summary>
  15. public int MoveSpeed
  16. {
  17. get { return _MoveSpeed; }
  18. set { SetProperty(ref _MoveSpeed, value); }
  19. }
  20. private int _RepeatCount = 10;
  21. /// <summary>
  22. /// 测试次数
  23. /// </summary>
  24. public int RepeatCount
  25. {
  26. get { return _RepeatCount; }
  27. set { SetProperty(ref _RepeatCount, value); }
  28. }
  29. }
  30. }