IRobot522.cs 397 B

123456789101112131415161718
  1. using System.ComponentModel;
  2. using WCS.Protocol.SX.Protocol.Robot;
  3. namespace WCS.Protocol.SX.Robot
  4. {
  5. /// <summary>
  6. /// 机械臂DB522
  7. /// </summary>
  8. [Description("522")]
  9. public interface IRobot522 : IProtocol
  10. {
  11. [Description("报警信息")]
  12. /// <summary>
  13. /// 报警
  14. /// </summary>
  15. public RobotAlarm Alarm { get; set; }
  16. }
  17. }