驱蚊app
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

10 satır
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. }