mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
feat: add conditions
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace _Project.Develop.Runtime.Utilities.Conditions
|
||||
{
|
||||
public interface ICompositeCondition : ICondition
|
||||
{
|
||||
ICompositeCondition Add(ICondition condition, int order = 0, Func<bool, bool, bool> logicOperation = null);
|
||||
|
||||
ICompositeCondition Remove(ICondition condition);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user