暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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