-
Notifications
You must be signed in to change notification settings - Fork 10
/
App.cs
57 lines (52 loc) · 1.05 KB
/
App.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System.CodeDom.Compiler;
using System.Configuration;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace AuroraServer
{
[CompilerGenerated]
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
internal sealed class App : ApplicationSettingsBase
{
private static App defaultInstance = (App)SettingsBase.Synchronized(new App());
public static App Default => defaultInstance;
[ApplicationScopedSetting]
[DebuggerNonUserCode]
[DefaultSettingValue("True")]
public bool UseProtect
{
get
{
return (bool)this["UseProtect"];
}
}
[UserScopedSetting]
[DebuggerNonUserCode]
[DefaultSettingValue("False")]
public bool UseOldMode
{
get
{
return (bool)this["UseOldMode"];
}
set
{
this["UseOldMode"] = value;
}
}
[UserScopedSetting]
[DebuggerNonUserCode]
[DefaultSettingValue("127.0.0.1")]
public string SQL_HOST
{
get
{
return (string)this["SQL_HOST"];
}
set
{
this["SQL_HOST"] = value;
}
}
}
}