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