8 lines
256 B
C#
8 lines
256 B
C#
|
|
using Microsoft.AspNetCore.Http;
|
||
|
|
|
||
|
|
namespace zero.Applications;
|
||
|
|
|
||
|
|
public interface IBackofficeApplicationResolverHandler : IHandler
|
||
|
|
{
|
||
|
|
bool TryResolve(HttpContext context, IEnumerable<Application> applications, ZeroUser user, out Application resolved);
|
||
|
|
}
|