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