驱蚊app
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

22 rader
479 B

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