mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-29 11:16:19 +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);
|
|
}
|
|
} |