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