驱蚊app
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

10 rader
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. }