2023-12-16 20:25:12 +03:30
|
|
|
|
namespace NetinaShop.Repository.Abstracts;
|
|
|
|
|
|
|
|
|
|
|
|
public interface ICurrentUserService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
string? UserId { get; }
|
|
|
|
|
|
string? RoleName { get; }
|
|
|
|
|
|
string? UserName { get; }
|
2024-01-02 19:08:39 +03:30
|
|
|
|
public List<string>? Permissions { get; }
|
2023-12-16 20:25:12 +03:30
|
|
|
|
}
|