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

11 lines
273 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 ITenantIdProvider
{
Task<string?> GetTenantIdAsync();
}
}