12 lines
319 B
C#
12 lines
319 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; }
|
|
string? FullName { get; }
|
|
List<string>? Permissions { get; }
|
|
} |