Files
CleanArchitecture-template/MyNewProjectName.Application/Interfaces/ICurrentUserService.cs
2026-02-26 14:04:18 +07:00

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; }
}