AppleAuthLoginArgs.cs 479 B

123456789101112131415161718192021
  1. using AppleAuth.Enums;
  2. namespace AppleAuth
  3. {
  4. public struct AppleAuthLoginArgs
  5. {
  6. public readonly LoginOptions Options;
  7. public readonly string Nonce;
  8. public readonly string State;
  9. public AppleAuthLoginArgs(
  10. LoginOptions options,
  11. string nonce = null,
  12. string state = null)
  13. {
  14. this.Options = options;
  15. this.Nonce = nonce;
  16. this.State = state;
  17. }
  18. }
  19. }