killapp/Assets/AppleAuth/Runtime/AppleAuthQuickLoginArgs.cs

15 lines
320 B
C#
Raw Normal View History

2026-06-18 09:38:23 +08:00
namespace AppleAuth
{
public struct AppleAuthQuickLoginArgs
{
public readonly string Nonce;
public readonly string State;
public AppleAuthQuickLoginArgs(string nonce = null, string state = null)
{
this.Nonce = nonce;
this.State = state;
}
}
}