mirror of
https://git.neonteam.dev/amizing/FreeSR.git
synced 2025-03-12 03:36:21 -04:00
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);
|
|
}
|
|
}
|