/*------------------------------------------------------------------------- * 功能描述: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 { /// /// 构件分类生成器 /// public static class CategoryGenerator { public static string BuildingCategory(Enum e) { return $"{e.GetType()}.{e}"; } } }