14 lines
391 B
C#
14 lines
391 B
C#
using IdentityServer.Domain.Entities;
|
|
using IdentityServer.Domain.Models;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IdentityServer.Domain.Repositories
|
|
{
|
|
public interface IIdentityRepository
|
|
{
|
|
Task<AppUser> GetUser(string userName, string password);
|
|
Task UpdateUserAfterAuthentication(AppUser user, Token token);
|
|
Task<UserToken[]> GetActiveTokens();
|
|
}
|
|
}
|