mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 16:06:24 +02:00
upgraded to autofac 3. created nancy only mode for nzbdrone.exe /n
This commit is contained in:
15
NzbDrone.Common/EnsureThat/TypeParam.cs
Normal file
15
NzbDrone.Common/EnsureThat/TypeParam.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace NzbDrone.Common.EnsureThat
|
||||
{
|
||||
public class TypeParam : Param
|
||||
{
|
||||
public readonly Type Type;
|
||||
|
||||
internal TypeParam(string name, Type type)
|
||||
: base(name)
|
||||
{
|
||||
Type = type;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user