DeviceCtrlType.cs 375 B

12345678910111213141516171819
  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.Devs
  8. {
  9. public enum DeviceCtrlType
  10. {
  11. [Description("可控")]
  12. Allow,
  13. [Description("不可控")]
  14. Reject,
  15. [Description("共享")]
  16. Shared
  17. }
  18. }