1234567891011121314151617181920212223242526 |
- /*-------------------------------------------------------------------------
- * 功能描述:ElementWrapperGenerator
- * 作者:xulisong
- * 创建时间: 2019/6/24 9:03:15
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RevitToJBim.Common
- {
- /// <summary>
- /// 构件分类生成器
- /// </summary>
- public static class CategoryGenerator
- {
- public static string BuildingCategory(Enum e)
- {
- return $"{e.GetType()}.{e}";
- }
- }
- }
|