MoveState.cs 466 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. /// <summary>
  10. /// 运动状态
  11. /// </summary>
  12. public enum MoveState
  13. {
  14. [Description("未知")]
  15. None = 0,
  16. [Description("静止")]
  17. Stop,
  18. [Description("运动")]
  19. Move,
  20. [Description("无效")]
  21. Error
  22. }
  23. }