| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- /// <summary>
- /// 链路类型
- /// </summary>
- public enum SigLinkType
- {
- [Description("固定链路")]
- Fixed,
- [Description("采集链路")]
- Collect,
- [Description("接收链路")]
- Receive
- }
- }
|