驱蚊app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
231 B

  1. using AppleAuth.Enums;
  2. namespace AppleAuth.Interfaces
  3. {
  4. public interface ICredentialStateResponse
  5. {
  6. bool Success { get; }
  7. CredentialState CredentialState { get; }
  8. IAppleError Error { get; }
  9. }
  10. }