AppleAuthQuickLoginArgs.cs 320 B

1234567891011121314
  1. namespace AppleAuth
  2. {
  3. public struct AppleAuthQuickLoginArgs
  4. {
  5. public readonly string Nonce;
  6. public readonly string State;
  7. public AppleAuthQuickLoginArgs(string nonce = null, string state = null)
  8. {
  9. this.Nonce = nonce;
  10. this.State = state;
  11. }
  12. }
  13. }