驱蚊app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

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