12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Welling_Motor_Debug_Tool
- {
- internal class LocalInfo
- {
- public string LocalPath = "C:\\Temp\\MotorTestTool\\"; //本地文件默认路径
- public string ConfigFileName = "Config.ttcfg"; //配置文件
- public string UsrFileName = "UserAccount"; //登录配置
- public string CfgPathName = "cfg\\"; //配置目录
- public string WalkLogPathName = "walkTest\\"; //推行测试目录
- public string CheckPathName = "qcTest\\"; //检验目录
- public string VersionPathName = "version\\"; //版本信息
- }
- }
|