Newer
Older
Warehouse / src / Infrastructure / Authentication / Core / Services / ITokenService.cs
@Derek Comartin Derek Comartin on 22 Aug 2023 316 bytes Init
using MyWarehouse.Infrastructure.Authentication.Core.Model;

namespace MyWarehouse.Infrastructure.Authentication.Core.Services;

public interface ITokenService
{
    TokenModel CreateAuthenticationToken(string userId, string uniqueName, IEnumerable<(string claimType, string claimValue)>? customClaims = null);
}