diff --git a/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleAction.cs b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleAction.cs new file mode 100644 index 00000000..bebac5d6 --- /dev/null +++ b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleAction.cs @@ -0,0 +1,5 @@ +namespace BotSharp.Abstraction.Rules; + +public interface IRuleAction +{ +} diff --git a/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleConfig.cs b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleConfig.cs new file mode 100644 index 00000000..dcbe1827 --- /dev/null +++ b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleConfig.cs @@ -0,0 +1,5 @@ +namespace BotSharp.Abstraction.Rules; + +public interface IRuleConfig +{ +} diff --git a/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleCriteria.cs b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleCriteria.cs new file mode 100644 index 00000000..bc502291 --- /dev/null +++ b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleCriteria.cs @@ -0,0 +1,5 @@ +namespace BotSharp.Abstraction.Rules; + +public interface IRuleCriteria +{ +} diff --git a/src/Infrastructure/BotSharp.Core.Rules/Engines/IRuleEngine.cs b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleEngine.cs similarity index 65% rename from src/Infrastructure/BotSharp.Core.Rules/Engines/IRuleEngine.cs rename to src/Infrastructure/BotSharp.Abstraction/Rules/IRuleEngine.cs index e2e025e6..c870f145 100644 --- a/src/Infrastructure/BotSharp.Core.Rules/Engines/IRuleEngine.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleEngine.cs @@ -1,6 +1,4 @@ -using BotSharp.Abstraction.Models; - -namespace BotSharp.Core.Rules.Engines; +namespace BotSharp.Abstraction.Rules; public interface IRuleEngine { diff --git a/src/Infrastructure/BotSharp.Core.Rules/Actions/IRuleAction.cs b/src/Infrastructure/BotSharp.Core.Rules/Actions/IRuleAction.cs deleted file mode 100644 index 6361950b..00000000 --- a/src/Infrastructure/BotSharp.Core.Rules/Actions/IRuleAction.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace BotSharp.Core.Rules.Actions; - -public interface IRuleAction -{ -} diff --git a/src/Infrastructure/BotSharp.Core.Rules/Criterias/IRuleCriteria.cs b/src/Infrastructure/BotSharp.Core.Rules/Criterias/IRuleCriteria.cs deleted file mode 100644 index c65743ce..00000000 --- a/src/Infrastructure/BotSharp.Core.Rules/Criterias/IRuleCriteria.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace BotSharp.Core.Rules.Criterias; - -public interface IRuleCriteria -{ -} diff --git a/src/Infrastructure/BotSharp.Core.Rules/Triggers/IRuleConfig.cs b/src/Infrastructure/BotSharp.Core.Rules/Triggers/IRuleConfig.cs deleted file mode 100644 index e9d75733..00000000 --- a/src/Infrastructure/BotSharp.Core.Rules/Triggers/IRuleConfig.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace BotSharp.Core.Rules.Triggers; - -public interface IRuleConfig -{ -}