LocalInfo.cs 694 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Welling_Motor_Debug_Tool
  7. {
  8. internal class LocalInfo
  9. {
  10. public string LocalPath = "C:\\Temp\\MotorTestTool\\"; //本地文件默认路径
  11. public string ConfigFileName = "Config.ttcfg"; //配置文件
  12. public string UsrFileName = "UserAccount"; //登录配置
  13. public string CfgPathName = "cfg\\"; //配置目录
  14. public string WalkLogPathName = "walkTest\\"; //推行测试目录
  15. public string CheckPathName = "qcTest\\"; //检验目录
  16. public string VersionPathName = "version\\"; //版本信息
  17. }
  18. }