mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
15 lines
No EOL
259 B
C#
15 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |