12345678910111213141516171819202122 |
- /* ==============================================================================
- * 功能描述:StarterConst
- * 创 建 者:Garrett
- * 创建日期:2019/8/1 9:23:15
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ExportStart
- {
- /// <summary>
- /// StarterConst
- /// </summary>
- class StarterConst
- {
- //Revit文件版本信息存储的位置
- public const string RevitFileVisionFile = "RevitFileVision.txt";
- }
- }
|