12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- using System;
- using System.IO;
- using SAGA.DotNetUtils;
- namespace ServiceRevitLib.Common
- {
-
-
-
- public class MBIConst
- {
-
- public static readonly string MBIResourcePath = Path.Combine(AppBaseInfo.DllRunPath, "MBIResource");
-
-
-
- public readonly static string EquipLocalID = "设备本地编码";
-
-
-
- public readonly static string EquipLocalName = "设备本地名称";
-
-
-
- public static string StartFlag { get; private set; } = "start";
-
- public static readonly double SpacePerimeterTolerance = Math.Pow(0.4 * 1000 / 304.8, 2) / 100;
-
- public static readonly double SpaceAreaTolerance = (0.4 * 1000 / 304.8 * 4) / 100;
- }
- }
|