驱蚊app
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

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