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

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