LocalInfo.cs 571 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. }