12 lines
231 B
C#
12 lines
231 B
C#
|
|
using AppleAuth.Enums;
|
||
|
|
|
||
|
|
namespace AppleAuth.Interfaces
|
||
|
|
{
|
||
|
|
public interface ICredentialStateResponse
|
||
|
|
{
|
||
|
|
bool Success { get; }
|
||
|
|
CredentialState CredentialState { get; }
|
||
|
|
IAppleError Error { get; }
|
||
|
|
}
|
||
|
|
}
|