forked from Moux23333/FreeSR
13 lines
309 B
C#
13 lines
309 B
C#
namespace FreeSR.Shared.Command.Convert
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class CommandParameterConverterAttribute : Attribute
|
|
{
|
|
public Type Type { get; }
|
|
|
|
public CommandParameterConverterAttribute(Type type)
|
|
{
|
|
Type = type;
|
|
}
|
|
}
|
|
}
|