| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public enum ChannelType
- {
- [Description("无")]
- None,
- [Description("输入")]
- In,
- [Description("输出")]
- Out
- }
- }
|