Project_WL/Assets/ThirdParty/AppleAuth/Interfaces/ILoginWithAppleIdResponse.cs

10 lines
268 B
C#

namespace AppleAuth.Interfaces
{
public interface ILoginWithAppleIdResponse
{
bool Success { get; }
IAppleError Error { get; }
IAppleIDCredential AppleIDCredential { get; }
IPasswordCredential PasswordCredential { get; }
}
}