mirror of
https://github.com/Readarr/Readarr
synced 2026-01-15 12:03:17 +01: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);
|
|
}
|
|
} |