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