forked from Necrobot-Private/PokemonGo.RocketAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathISettings.cs
More file actions
45 lines (41 loc) · 1.5 KB
/
ISettings.cs
File metadata and controls
45 lines (41 loc) · 1.5 KB
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
#region using directives
using Google.Protobuf;
using PokemonGo.RocketAPI.Enums;
#endregion
namespace PokemonGo.RocketAPI
{
public interface ISettings
{
AuthType AuthType { get; set; }
double DefaultLatitude { get; set; }
double DefaultLongitude { get; set; }
double DefaultAltitude { get; set; }
string GoogleRefreshToken { get; set; }
string Password { get; set; }
string Username { get; set; }
string DevicePlatform { get; set; }
string DeviceId { get; set; }
string AndroidBoardName { get; set; }
string AndroidBootloader { get; set; }
string DeviceBrand { get; set; }
string DeviceModel { get; set; }
string DeviceModelIdentifier { get; set; }
string DeviceModelBoot { get; set; }
string HardwareManufacturer { get; set; }
string HardwareModel { get; set; }
string FirmwareBrand { get; set; }
string FirmwareTags { get; set; }
string FirmwareType { get; set; }
string FirmwareFingerprint { get; set; }
bool UseProxy { get; set; }
bool UseProxyAuthentication { get; set; }
string UseProxyHost { get; set; }
string UseProxyPort { get; set; }
string UseProxyUsername { get; set; }
string UseProxyPassword { get; set; }
bool UsePogoDevHashServer { get; set; }
bool UseLegacyAPI { get; set; }
string AuthAPIKey { get; set; }
bool DisplayVerboseLog { get; set; }
}
}