StarterConst.cs 626 B

12345678910111213141516171819202122
  1. /* ==============================================================================
  2. * 功能描述:StarterConst
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/8/1 9:23:15
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace ExportStart
  12. {
  13. /// <summary>
  14. /// StarterConst
  15. /// </summary>
  16. class StarterConst
  17. {
  18. //Revit文件版本信息存储的位置
  19. public const string RevitFileVisionFile = "RevitFileVision.txt";
  20. }
  21. }