Files
mixtape/zero.Core/Applications/IApplicationResolverHandler.cs
T

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);
}