| 1234567891011121314151617181920212223242526272829303132 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models.Torque
- {
- public class PickScrewAccuracyAnalyzerrConfigModel : BindableBase
- {
- private int _MoveSpeed = 100;
- /// <summary>
- /// 机器人移动速度
- /// </summary>
- public int MoveSpeed
- {
- get { return _MoveSpeed; }
- set { SetProperty(ref _MoveSpeed, value); }
- }
- private int _RepeatCount = 10;
- /// <summary>
- /// 测试次数
- /// </summary>
- public int RepeatCount
- {
- get { return _RepeatCount; }
- set { SetProperty(ref _RepeatCount, value); }
- }
- }
- }
|