namespace MyNewProjectName.Application.Interfaces; /// /// Interface for getting current user information /// public interface ICurrentUserService { string? UserId { get; } string? UserName { get; } bool? IsAuthenticated { get; } string? Role { get; } }