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 TransType
- {
- [Description("透明转发")]
- Transparent,
- [Description("非透明转发")]
- NonTransparent,
- [Description("不转发")]
- NotTranspond
- }
- }
|