killapp/Assets/AppleAuth/Runtime/AppleAuthLoginArgs.cs
2026-06-18 09:38:23 +08:00

22 lines
479 B
C#

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;
}
}
}