mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 08:47:59 +02:00
9 lines
148 B
C#
9 lines
148 B
C#
using Owin;
|
|
|
|
namespace NzbDrone.Owin.MiddleWare
|
|
{
|
|
public interface IOwinMiddleWare
|
|
{
|
|
void Attach(IAppBuilder appBuilder);
|
|
}
|
|
} |