mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
9 lines
335 B
C#
9 lines
335 B
C#
namespace DotBased.AspNet.Authority.Repositories;
|
|
|
|
public interface IUserRepository<TUser> where TUser : class
|
|
{
|
|
public Task<TUser?> GetUserByIdAsync(string id);
|
|
public Task<string> GetUserIdAsync(TUser user);
|
|
public Task SetVersion(TUser user, long version);
|
|
public Task SetSecurityVersion(TUser user, long version);
|
|
} |