2015-12-11 22:53:28 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
namespace SteamAuth {
|
|
|
|
|
|
// TODO: Converter code will be removed soon
|
|
|
|
|
|
public class SteamGuardAccount {
|
|
|
|
|
|
[JsonProperty("shared_secret")]
|
|
|
|
|
|
public string SharedSecret { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("serial_number")]
|
|
|
|
|
|
public string SerialNumber { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("revocation_code")]
|
|
|
|
|
|
public string RevocationCode { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("uri")]
|
|
|
|
|
|
public string URI { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("server_time")]
|
|
|
|
|
|
public long ServerTime { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("account_name")]
|
|
|
|
|
|
public string AccountName { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("token_gid")]
|
|
|
|
|
|
public string TokenGID { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("identity_secret")]
|
|
|
|
|
|
public string IdentitySecret { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("secret_1")]
|
|
|
|
|
|
public string Secret1 { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("status")]
|
|
|
|
|
|
public int Status { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("device_id")]
|
|
|
|
|
|
public string DeviceID { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
[JsonProperty("fully_enrolled")]
|
|
|
|
|
|
public bool FullyEnrolled { get; set; }
|
2015-12-11 22:53:28 +01:00
|
|
|
|
|
2016-06-19 05:40:46 +02:00
|
|
|
|
}
|
2015-12-11 22:53:28 +01:00
|
|
|
|
}
|