驱蚊app
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

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