驱蚊app
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

15 řádky
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. }