Api/Brizco.Repository/Abstracts/ICurrentUserService.cs

11 lines
289 B
C#

namespace Brizco.Repository.Abstracts;
public interface ICurrentUserService : IScopedDependency
{
string? UserId { get; }
string? RoleName { get; }
string? ComplexId { get; }
string? UserName { get; }
string? RoleId { get; }
List<string>? Permissions { get; }
}