1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Common/EnsureThat/TypeParam.cs

15 lines
259 B
C#

using System;
namespace NzbDrone.Common.EnsureThat
{
public class TypeParam : Param
{
public readonly Type Type;
internal TypeParam(string name, Type type)
: base(name)
{
Type = type;
}
}
}