killapp/Assets/AppleAuth/Runtime/Interfaces/ICredentialStateResponse.cs

12 lines
231 B
C#
Raw Normal View History

2026-06-18 09:38:23 +08:00
using AppleAuth.Enums;
namespace AppleAuth.Interfaces
{
public interface ICredentialStateResponse
{
bool Success { get; }
CredentialState CredentialState { get; }
IAppleError Error { get; }
}
}