LevelLogic.cs 388 B

123456789101112131415161718192021
  1. using System.ComponentModel;
  2. namespace Shaker.Models
  3. {
  4. /// <summary>
  5. /// PLC逻辑量控制逻辑
  6. /// </summary>
  7. public enum LevelLogic
  8. {
  9. /// <summary>
  10. /// 电平
  11. /// </summary>
  12. [Description("Level")]
  13. Level,
  14. /// <summary>
  15. /// 边沿
  16. /// </summary>
  17. [Description("Edge")]
  18. Edge,
  19. }
  20. }