FaultLevel.cs 366 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace NXWMS.Client.String.Enums
  7. {
  8. /// <summary>
  9. /// 报警级别
  10. /// </summary>
  11. public enum FaultLevel
  12. {
  13. [Description("一般")]
  14. Commonly,
  15. [Description("严重")]
  16. Serious
  17. }
  18. }