killapp/Assets/AppleAuth/Runtime/Interfaces/ILoginWithAppleIdResponse.cs
2026-06-18 09:38:23 +08:00

10 lines
268 B
C#

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