驱蚊app
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

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