123456789101112131415161718192021 |
- using System.ComponentModel;
- namespace Shaker.Models
- {
- /// <summary>
- /// PLC逻辑量控制逻辑
- /// </summary>
- public enum LevelLogic
- {
- /// <summary>
- /// 电平
- /// </summary>
- [Description("Level")]
- Level,
- /// <summary>
- /// 边沿
- /// </summary>
- [Description("Edge")]
- Edge,
- }
- }
|