mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
10 lines
No EOL
175 B
C#
10 lines
No EOL
175 B
C#
using Owin;
|
|
|
|
namespace NzbDrone.Owin.MiddleWare
|
|
{
|
|
public interface IOwinMiddleWare
|
|
{
|
|
int Order { get; }
|
|
void Attach(IAppBuilder appBuilder);
|
|
}
|
|
} |