mh_frame_sps/APT.Infrastructure.EF/Infrastructure/ITenantInfoGenerator.cs
2026-04-07 13:47:52 +08:00

11 lines
255 B
C#

using Microsoft.AspNetCore.Http;
using APT.Infrastructure.Api;
namespace APT.Infrastructure.EF
{
public interface ITenantInfoGenerator
{
TenantInfo GenerateTenant(object sender, Microsoft.AspNetCore.Http.HttpContext httpContext);
}
}