13 lines
292 B
C#
13 lines
292 B
C#
namespace MyNewProjectName.Application.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Interface for getting current user information
|
|
/// </summary>
|
|
public interface ICurrentUserService
|
|
{
|
|
string? UserId { get; }
|
|
string? UserName { get; }
|
|
bool? IsAuthenticated { get; }
|
|
string? Role { get; }
|
|
}
|