12345678910111213141516171819202122232425262728293031 |
- /* ==============================================================================
- * 功能描述:DCElementType
- * 创 建 者:Garrett
- * 创建日期:2018/11/16 17:06:13
- * ==============================================================================*/
- using System.ComponentModel;
- namespace Saga.PlugIn.ModelCheck
- {
- /// <summary>
- /// DCElementType
- /// </summary>
- public enum DCElementType
- {
- [Description("未知")]
- None,
- [Description("墙")]
- Wall,
- [Description("柱")]
- Column,
- [Description("空间")]
- Space,
- [Description("设备")]
- Equipment,
- [Description("部件")]
- EuipmentPart,
- [Description("信标")]
- Beacon
- }
- }
|