mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-29 16:27:51 +00:00
23 lines
500 B
C#
23 lines
500 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SteamLib.Authentication;
|
|
|
|
#pragma warning disable CS8618
|
|
public class TransferParameters
|
|
{
|
|
[JsonProperty("steamid")]
|
|
public long SteamId { get; set; }
|
|
|
|
[JsonProperty("token_secure")]
|
|
public string TokenSecure { get; set; }
|
|
|
|
[JsonProperty("auth")]
|
|
public string Auth { get; set; }
|
|
|
|
[JsonProperty("remember_login")]
|
|
public bool RememberLogin { get; set; }
|
|
|
|
[JsonProperty("webcookie")]
|
|
public string WebCookie { get; set; }
|
|
|
|
} |