| 123456789101112131415161718 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TeamAAS_VP.Core.Robots;
- namespace TeamAAS_VP.Models.PLC
- {
- public class PlcRobotParameter
- {
- /// <summary>
- /// 轴集合
- /// </summary>
- public List<Axis> AxixList { get; set; }
- }
- }
|