8 lines
195 B
C#
8 lines
195 B
C#
|
|
namespace NetinaShop.Repository.Abstracts;
|
|||
|
|
|
|||
|
|
public interface ICurrentUserService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
string? UserId { get; }
|
|||
|
|
string? RoleName { get; }
|
|||
|
|
string? UserName { get; }
|
|||
|
|
}
|