12345678910111213141516171819202122232425262728293031 |
-
- using System.IO;
- using SAGA.DotNetUtils;
- namespace ServiceRevitLib.Common
- {
-
-
-
- public class MBIConst
- {
- public static readonly string MBITempSettingPath = Path.Combine(AppBaseInfo.AppTempFilePath, "MBI\\SettingsTemp");
-
- public static readonly string MBIResourcePath = Path.Combine(AppBaseInfo.AppRunPath, "MBIResource");
- public static readonly string EmptyFilePath = Path.Combine(MBIResourcePath, "EmptyFile\\EmptyProject.rvt");
-
-
-
- public readonly static string EquipLocalID = "设备本地编码";
-
-
-
- public readonly static string EquipLocalName = "设备本地名称";
- }
- }
|