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