first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user