-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathConfiguration.cs
More file actions
21 lines (20 loc) · 886 Bytes
/
Configuration.cs
File metadata and controls
21 lines (20 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace AoShinhoServ_Monitor
{
public static class Configuration
{
public static string LoginPath = Properties.Settings.Default.LoginPath;
public static string CharPath = Properties.Settings.Default.CharPath;
public static string MapPath = Properties.Settings.Default.MapPath;
public static string WebPath = Properties.Settings.Default.WebPath;
public static string RobPath = Properties.Settings.Default.ROBPath;
public static void Save()
{
Properties.Settings.Default.LoginPath = LoginPath;
Properties.Settings.Default.CharPath = CharPath;
Properties.Settings.Default.MapPath = MapPath;
Properties.Settings.Default.WebPath = WebPath;
Properties.Settings.Default.ROBPath = RobPath;
Properties.Settings.Default.Save();
}
}
}