TransType.cs 458 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. /// <summary>
  10. /// 转发类型
  11. /// </summary>
  12. public enum TransType
  13. {
  14. [Description("透明转发")]
  15. Transparent,
  16. [Description("非透明转发")]
  17. NonTransparent,
  18. [Description("不转发")]
  19. NotTranspond
  20. }
  21. }