Rob / Application /Abstractions /Interfaces /IGoogleTokenValidator.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
239 Bytes
using Google.Apis.Auth;
using System.Threading.Tasks;
namespace Application.Abstractions.Interfaces
{
public interface IGoogleTokenValidator
{
Task<GoogleJsonWebSignature.Payload> ValidateAsync(string jwtToken);
}
}