10 lines
268 B
C#
10 lines
268 B
C#
|
|
namespace AppleAuth.Interfaces
|
||
|
|
{
|
||
|
|
public interface ILoginWithAppleIdResponse
|
||
|
|
{
|
||
|
|
bool Success { get; }
|
||
|
|
IAppleError Error { get; }
|
||
|
|
IAppleIDCredential AppleIDCredential { get; }
|
||
|
|
IPasswordCredential PasswordCredential { get; }
|
||
|
|
}
|
||
|
|
}
|