move rule interfaces
This commit is contained in:
parent
6ae67aa70d
commit
b63bd58540
|
|
@ -0,0 +1,5 @@
|
|||
namespace BotSharp.Abstraction.Rules;
|
||||
|
||||
public interface IRuleAction
|
||||
{
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
namespace BotSharp.Abstraction.Rules;
|
||||
|
||||
public interface IRuleConfig
|
||||
{
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
namespace BotSharp.Abstraction.Rules;
|
||||
|
||||
public interface IRuleCriteria
|
||||
{
|
||||
}
|
||||
|
|
@ -1,6 +1,4 @@
|
|||
using BotSharp.Abstraction.Models;
|
||||
|
||||
namespace BotSharp.Core.Rules.Engines;
|
||||
namespace BotSharp.Abstraction.Rules;
|
||||
|
||||
public interface IRuleEngine
|
||||
{
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
namespace BotSharp.Core.Rules.Actions;
|
||||
|
||||
public interface IRuleAction
|
||||
{
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
namespace BotSharp.Core.Rules.Criterias;
|
||||
|
||||
public interface IRuleCriteria
|
||||
{
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
namespace BotSharp.Core.Rules.Triggers;
|
||||
|
||||
public interface IRuleConfig
|
||||
{
|
||||
}
|
||||
Loading…
Reference in a new issue