diff options
Diffstat (limited to 'RhSolutions.MLModifiers/IProductMLModifier.cs')
-rw-r--r-- | RhSolutions.MLModifiers/IProductMLModifier.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/RhSolutions.MLModifiers/IProductMLModifier.cs b/RhSolutions.MLModifiers/IProductMLModifier.cs new file mode 100644 index 0000000..544fcbe --- /dev/null +++ b/RhSolutions.MLModifiers/IProductMLModifier.cs @@ -0,0 +1,6 @@ +namespace RhSolutions.MLModifiers; + +public interface IProductMLModifier +{ + public bool TryQueryModify(string query, out string queryModified); +} |