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ů.
|
- namespace AppleAuth
- {
- public struct AppleAuthQuickLoginArgs
- {
- public readonly string Nonce;
- public readonly string State;
-
- public AppleAuthQuickLoginArgs(string nonce = null, string state = null)
- {
- this.Nonce = nonce;
- this.State = state;
- }
- }
- }
|