Api/NetinaShop.Repository/Abstracts/ICurrentUserService.cs

11 lines
302 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; }
2024-02-08 18:56:56 +03:30
string? DeviceId { get; }
bool IsAuthorized { get; }
public List<string>? Permissions { get; }
2023-12-16 20:25:12 +03:30
}