mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-30 08:41:07 +00:00
16 lines
454 B
C#
16 lines
454 B
C#
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable IdentifierTypo
|
|
#pragma warning disable CS8618
|
|
|
|
namespace SteamLib.Login.Default;
|
|
|
|
/// <summary>
|
|
/// Class to Deserialize the json response strings of the getResKey request/>
|
|
/// </summary>
|
|
internal class RsaKeyJson
|
|
{
|
|
public bool success { get; set; }
|
|
public string publickey_mod { get; set; }
|
|
public string publickey_exp { get; set; }
|
|
public string timestamp { get; set; }
|
|
} |