13 lines
285 B
C#
13 lines
285 B
C#
namespace StellaOps.Scanner.WebService.Tenancy;
|
|
|
|
/// <summary>
|
|
/// Provides the current tenant context for multi-tenant operations.
|
|
/// </summary>
|
|
public interface ITenantContext
|
|
{
|
|
/// <summary>
|
|
/// Gets the current tenant ID.
|
|
/// </summary>
|
|
string TenantId { get; }
|
|
}
|