tuitio/IdentityServer.Application/Services/IUserService.cs

11 lines
276 B
C#

using IdentityServer.Domain.Models;
using System.Threading.Tasks;
namespace IdentityServer.Application.Services
{
public interface IUserService
{
Task<Token> Authenticate(string userName, string password);
TokenCore Authorize(string token);
}
}