MultipleRobotPoint.cs 518 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TeamAAS_VP.Models.Robot
  7. {
  8. /// <summary>
  9. /// 多机器人点位表
  10. /// </summary>
  11. public class MultipleRobotPoint: RPoint
  12. {
  13. private Guid _RobotId;
  14. /// <summary>
  15. /// 机器人
  16. /// </summary>
  17. public Guid RobotId
  18. {
  19. get { return _RobotId; }
  20. set { SetProperty(ref _RobotId, value); }
  21. }
  22. }
  23. }