Files

9 lines
226 B
C#

public interface ICurrentUserService
{
Guid? UserId { get; }
string? Username { get; }
string? DisplayName { get; }
ClinicalRole? Role { get; }
bool IsAuthenticated { get; }
string? IpAddress { get; }
}