PlcRobotParameter.cs 367 B

123456789101112131415161718
  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. using TeamAAS_VP.Core.Robots;
  8. namespace TeamAAS_VP.Models.PLC
  9. {
  10. public class PlcRobotParameter
  11. {
  12. /// <summary>
  13. /// 轴集合
  14. /// </summary>
  15. public List<Axis> AxixList { get; set; }
  16. }
  17. }