Newer
Older
GuardClauses / src / ApplicationCore / Interfaces / ITokenClaimsService.cs
@Derek Comartin Derek Comartin on 15 Aug 2022 182 bytes Init
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

public interface ITokenClaimsService
{
    Task<string> GetTokenAsync(string userName);
}