fork from 1.3
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace FreeSR.Shared.Command.Convert
|
||||
{
|
||||
[CommandParameterConverter(typeof(string))]
|
||||
public class StringCommandParameterConverter : ICommandParameterConverter
|
||||
{
|
||||
public bool TryConvert(string parameter, out object result)
|
||||
{
|
||||
result = parameter;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user