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