9 lines
261 B
C#
Executable File
9 lines
261 B
C#
Executable File
namespace AppleAuth.Interfaces
|
|
{
|
|
public interface IPayloadDeserializer
|
|
{
|
|
ICredentialStateResponse DeserializeCredentialStateResponse(string payload);
|
|
ILoginWithAppleIdResponse DeserializeLoginWithAppleIdResponse(string payload);
|
|
}
|
|
}
|