mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 14:29:23 +00:00
12 lines
319 B
C#
12 lines
319 B
C#
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);
|
|
}
|
|
}
|