No Description
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.

ICredentialStateResponse.cs 231B

1234567891011
  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. }