mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ArchiSteamFarm {
|
|
// TODO: This will be completely removed soon
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
|
|
[SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Global")]
|
|
public class ObsoleteSteamGuardAccount {
|
|
[JsonProperty("shared_secret")]
|
|
public string SharedSecret { get; set; }
|
|
|
|
[JsonProperty("serial_number")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[JsonProperty("revocation_code")]
|
|
public string RevocationCode { get; set; }
|
|
|
|
[JsonProperty("uri")]
|
|
public string URI { get; set; }
|
|
|
|
[JsonProperty("server_time")]
|
|
public long ServerTime { get; set; }
|
|
|
|
[JsonProperty("account_name")]
|
|
public string AccountName { get; set; }
|
|
|
|
[JsonProperty("token_gid")]
|
|
public string TokenGID { get; set; }
|
|
|
|
[JsonProperty("identity_secret")]
|
|
public string IdentitySecret { get; set; }
|
|
|
|
[JsonProperty("secret_1")]
|
|
public string Secret1 { get; set; }
|
|
|
|
[JsonProperty("status")]
|
|
public int Status { get; set; }
|
|
|
|
[JsonProperty("device_id")]
|
|
public string DeviceID { get; set; }
|
|
|
|
[JsonProperty("fully_enrolled")]
|
|
public bool FullyEnrolled { get; set; }
|
|
|
|
}
|
|
}
|