Files
git.stella-ops.org/src/Scanner/StellaOps.Scanner.WebService/Tenancy/ITenantContext.cs

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; }
}