mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
upgraded to autofac 3. created nancy only mode for nzbdrone.exe /n
This commit is contained in:
parent
177f88303c
commit
b0940ed8de
77 changed files with 3930 additions and 113 deletions
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue