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

8 lines
231 B
C#
Raw Normal View History

2021-11-20 13:52:28 +01:00
using Microsoft.AspNetCore.Http;
namespace zero.Applications;
public interface IApplicationResolverHandler : IHandler
{
2021-12-13 13:40:04 +01:00
bool TryResolve(HttpContext context, IEnumerable<Application> applications, out Application resolved);
2021-11-20 13:52:28 +01:00
}