PolType.cs 468 B

1234567891011121314151617181920212223
  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. public enum PolType
  10. {
  11. [Description("水平极化")]
  12. H,
  13. [Description("垂直极化")]
  14. V,
  15. [Description("左旋圆极化")]
  16. L,
  17. [Description("右旋圆极化")]
  18. R,
  19. [Description("椭圆极化")]
  20. O
  21. }
  22. }