Api/NetinaShop.Repository/Abstracts/ICurrentUserService.cs

9 lines
241 B
C#
Raw Normal View History

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; }
public List<string>? Permissions { get; }
2023-12-16 20:25:12 +03:30
}