2024-07-05 11:25:58 +00:00
|
|
|
|
// Copyright (c) HelloShop Corporation. All rights reserved.
|
|
|
|
|
// See the license file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
namespace MultiTenancySample.ServiceDefaults
|
2024-04-28 08:00:15 +00:00
|
|
|
|
{
|
|
|
|
|
public interface ICurrentTenant
|
|
|
|
|
{
|
|
|
|
|
string? TenantId { get; }
|
|
|
|
|
|
|
|
|
|
IDisposable SetTenant(string? tenantId);
|
|
|
|
|
}
|
|
|
|
|
}
|