| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- /// <summary>
- /// 运动状态
- /// </summary>
- public enum MoveState
- {
- [Description("未知")]
- None = 0,
- [Description("静止")]
- Stop,
- [Description("运动")]
- Move,
- [Description("无效")]
- Error
- }
- }
|