mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
13 lines
346 B
C#
13 lines
346 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);
|
|
}
|
|
}
|