12 lines
330 B
C#
12 lines
330 B
C#
namespace FreeSR.Shared.Command.Convert
|
|
{
|
|
[CommandParameterConverter(typeof(string))]
|
|
public class StringCommandParameterConverter : ICommandParameterConverter
|
|
{
|
|
public bool TryConvert(string parameter, out object result)
|
|
{
|
|
result = parameter;
|
|
return true;
|
|
}
|
|
}
|
|
}
|