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

8 lines
256 B
C#
Raw Normal View History

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