DCElementType.cs 768 B

12345678910111213141516171819202122232425262728293031
  1. /* ==============================================================================
  2. * 功能描述:DCElementType
  3. * 创 建 者:Garrett
  4. * 创建日期:2018/11/16 17:06:13
  5. * ==============================================================================*/
  6. using System.ComponentModel;
  7. namespace Saga.PlugIn.ModelCheck
  8. {
  9. /// <summary>
  10. /// DCElementType
  11. /// </summary>
  12. public enum DCElementType
  13. {
  14. [Description("未知")]
  15. None,
  16. [Description("墙")]
  17. Wall,
  18. [Description("柱")]
  19. Column,
  20. [Description("空间")]
  21. Space,
  22. [Description("设备")]
  23. Equipment,
  24. [Description("部件")]
  25. EuipmentPart,
  26. [Description("信标")]
  27. Beacon
  28. }
  29. }