| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity.Devs
- {
- public enum DeviceCtrlType
- {
- [Description("可控")]
- Allow,
- [Description("不可控")]
- Reject,
- [Description("共享")]
- Shared
- }
- }
|