-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConfig.cs
84 lines (62 loc) · 2.11 KB
/
Config.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Generated by Xamasoft JSON Class Generator
// http://www.xamasoft.com/json-class-generator
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Entropy
{
public partial class Configuration
{
public class Usernames2
{
[JsonProperty("Prefix")]
public string[] Prefix { get; set; }
[JsonProperty("Root")]
public string[] Root { get; set; }
[JsonProperty("Suffix")]
public string[] Suffix { get; set; }
}
}
public partial class Configuration
{
public class Password2
{
[JsonProperty("UseStaticPassword")]
public bool UseStaticPassword { get; set; }
[JsonProperty("StaticPassword")]
public string StaticPassword { get; set; }
}
}
public partial class Configuration
{
public class Tutorial2
{
[JsonProperty("Tos")]
public bool Tos { get; set; }
[JsonProperty("Level2")]
public bool Level2 { get; set; }
[JsonProperty("Level5")]
public bool Level5 { get; set; }
[JsonProperty("Latitude")]
public double Latitude { get; set; }
[JsonProperty("Longitude")]
public double Longitude { get; set; }
[JsonProperty("HashKey")]
public string HashKey { get; set; }
}
}
public partial class Configuration
{
[JsonProperty("Usernames")]
public Usernames2 Usernames { get; set; }
[JsonProperty("Password")]
public Password2 Password { get; set; }
[JsonProperty("CaptchaKey")]
public string CaptchaKey { get; set; }
[JsonProperty("ProxyFile")]
public string ProxyFile { get; set; }
[JsonProperty("TutorialSettings")]
public Tutorial2 TutorialSettings { get; set; }
}
}