forked from Moux23333/FreeSR
7 lines
169 B
C#
7 lines
169 B
C#
namespace FreeSR.Shared.Command.Convert
|
|
{
|
|
public interface ICommandParameterConverter
|
|
{
|
|
bool TryConvert(string parameter, out object result);
|
|
}
|
|
}
|