驱蚊app
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

15 lignes
320 B

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