Project_WL/Assets/ThirdParty/AppleAuth/AppleAuthLoginArgs.cs

22 lines
479 B
C#
Raw Normal View History

2024-12-18 06:23:47 +00:00
using AppleAuth.Enums;
namespace AppleAuth
{
public struct AppleAuthLoginArgs
{
public readonly LoginOptions Options;
public readonly string Nonce;
public readonly string State;
public AppleAuthLoginArgs(
LoginOptions options,
string nonce = null,
string state = null)
{
this.Options = options;
this.Nonce = nonce;
this.State = state;
}
}
}