AntType.cs 395 B

12345678910111213141516171819
  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 AntType
  10. {
  11. [Description("常规天线")]
  12. Normal = 0,
  13. [Description("战术星天线")]
  14. WarSat = 1,
  15. [Description("超短波天线")]
  16. Wave = 2
  17. }
  18. }