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