summaryrefslogtreecommitdiff
path: root/RhSolutions.MLModifiers/IProductMLModifier.cs
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2024-01-26 15:50:41 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2024-01-26 15:50:41 +0300
commita0a1c23c4d313d7c78b7cc6b7d6a108c3dad04ca (patch)
treebb59790dd64ced3a9470ff9a4c64e1f3fbbc2fdb /RhSolutions.MLModifiers/IProductMLModifier.cs
parent2befa6a2a06c2cb719fb4b91f99eca6cd9a565de (diff)
Add ML Modifiers with attribute
Diffstat (limited to 'RhSolutions.MLModifiers/IProductMLModifier.cs')
-rw-r--r--RhSolutions.MLModifiers/IProductMLModifier.cs6
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);
+}