namespace StellaOps.Scanner.WebService.Tenancy; /// /// Provides the current tenant context for multi-tenant operations. /// public interface ITenantContext { /// /// Gets the current tenant ID. /// string TenantId { get; } }