diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-26 15:50:41 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-26 15:50:41 +0300 |
commit | a0a1c23c4d313d7c78b7cc6b7d6a108c3dad04ca (patch) | |
tree | bb59790dd64ced3a9470ff9a4c64e1f3fbbc2fdb /RhSolutions.MLModifiers/IProductMLModifier.cs | |
parent | 2befa6a2a06c2cb719fb4b91f99eca6cd9a565de (diff) |
Add ML Modifiers with attribute
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); +} |