22 lines
479 B
C#
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|