namespace HStation.Revit
{
///
/// 常量参数
///
public class ConstParas
{
///
/// 场景
///
public const string Scene = "Revit";
///
/// 设置文件名称
///
public const string SettingFileName = "setting.json";
///
/// Rvt模型文件名称
///
public const string RvtFileName = "model.rvt";
///
/// 结构文件名称
///
public const string StructFileName = "struct.json";
///
/// 其他结构文件名称
///
public const string StructOthersFileName = "struct_others.json";
}
}