Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Interfaces / ITokenClaimsService.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 182 bytes Init
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

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