驱蚊app
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

10 righe
268 B

  1. namespace AppleAuth.Interfaces
  2. {
  3. public interface ILoginWithAppleIdResponse
  4. {
  5. bool Success { get; }
  6. IAppleError Error { get; }
  7. IAppleIDCredential AppleIDCredential { get; }
  8. IPasswordCredential PasswordCredential { get; }
  9. }
  10. }