LocalInfo.cs 967 B

12345678910111213141516171819202122
  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 LocalDataPath = "C:\\Temp\\MotorTestTool\\DataLog\\"; //本地数据文件路径
  12. public string ConfigFileName = "Config.ttcfg"; //配置文件
  13. public string ToolsPath = "C:\\Temp\\MotorTestTool\\Tools";//工具路径
  14. public string TorqueSensorFileName = "TorqueSensor.ttcfg"; //配置文件
  15. public string UsrFileName = "UserAccount"; //登录配置文件
  16. public string CfgPathName = "cfg\\"; //配置目录
  17. public string WalkLogPathName = "funcTest\\"; //推行测试目录
  18. public string CheckPathName = "qcTest\\"; //检验目录
  19. public string VersionPathName = "version\\"; //版本信息
  20. }
  21. }