8 lines
194 B
C#
8 lines
194 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.Tenancy;
|
|
|
|
public interface ITenantResolver
|
|
{
|
|
ITenantContext? Resolve(HttpContext http, object? hint = null);
|
|
} |