tuitio/IdentityServer.Application/Services/IUserService.cs

12 lines
318 B
C#
Raw Normal View History

2020-12-20 03:06:43 +02:00
using IdentityServer.Domain.Entities;
using IdentityServer.Domain.Models;
using System.Threading.Tasks;
namespace IdentityServer.Application.Services
{
public interface IUserService
{
Task<Token> Authenticate(string userName, string password);
Task<AppUser> Authorize(string token);
}
}