Files
Nebula-Auth/SteamLibForked/Authentication/TransferSession[folder]/OAuthData.cs
T
2024-02-01 01:21:56 +02:00

13 lines
478 B
C#

using Newtonsoft.Json;
namespace SteamLib.Authentication;
#pragma warning disable CS8618
public class OAuthData
{
[JsonProperty("steamid")] public long SteamId { get; set; }
[JsonProperty("oauth_token")] public string OAuthToken { get; set; }
[JsonProperty("webcookie")] public string WebCookie { get; set; }
[JsonProperty("wgtoken")] public string SteamLogin { get; set; }
[JsonProperty("wgtoken_secure")] public string SteamLoginSecure { get; set; }
}