12 lines
230 B
C#
12 lines
230 B
C#
using System.Security.Claims;
|
|
|
|
namespace Tiku.Application.Security;
|
|
|
|
public interface ICurrentTenant
|
|
{
|
|
Guid? TenantId { get; }
|
|
string? Role { get; }
|
|
bool IsResolved { get; }
|
|
void Load(ClaimsPrincipal principal);
|
|
}
|