驱蚊app
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

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