Api/NetinaShop.Repository/Abstracts/ICurrentUserService.cs

8 lines
195 B
C#

namespace NetinaShop.Repository.Abstracts;
public interface ICurrentUserService : IScopedDependency
{
string? UserId { get; }
string? RoleName { get; }
string? UserName { get; }
}