move rule interfaces

This commit is contained in:
Jicheng Lu 2025-05-07 17:44:48 -05:00
parent 6ae67aa70d
commit b63bd58540
7 changed files with 16 additions and 18 deletions

View file

@ -0,0 +1,5 @@
namespace BotSharp.Abstraction.Rules;
public interface IRuleAction
{
}

View file

@ -0,0 +1,5 @@
namespace BotSharp.Abstraction.Rules;
public interface IRuleConfig
{
}

View file

@ -0,0 +1,5 @@
namespace BotSharp.Abstraction.Rules;
public interface IRuleCriteria
{
}

View file

@ -1,6 +1,4 @@
using BotSharp.Abstraction.Models;
namespace BotSharp.Core.Rules.Engines;
namespace BotSharp.Abstraction.Rules;
public interface IRuleEngine
{

View file

@ -1,5 +0,0 @@
namespace BotSharp.Core.Rules.Actions;
public interface IRuleAction
{
}

View file

@ -1,5 +0,0 @@
namespace BotSharp.Core.Rules.Criterias;
public interface IRuleCriteria
{
}

View file

@ -1,5 +0,0 @@
namespace BotSharp.Core.Rules.Triggers;
public interface IRuleConfig
{
}