hello-shop/samples/MultiTenancySample/MultiTenancySample.ServiceDefaults/ICurrentTenant.cs
2024-07-05 19:25:58 +08:00

13 lines
312 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace MultiTenancySample.ServiceDefaults
{
public interface ICurrentTenant
{
string? TenantId { get; }
IDisposable SetTenant(string? tenantId);
}
}