forked from Necrobot-Private/PokemonGo.RocketAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISettings.cs
39 lines (38 loc) · 1.42 KB
/
ISettings.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
using Google.Protobuf;
using PokemonGo.RocketAPI.Enums;
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 PtcPassword { get; set; }
string PtcUsername { get; set; }
string GoogleUsername { get; set; }
string GooglePassword { 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; }
ByteString SessionHash { 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; }
}
}