mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 14:29:23 +00:00
13 lines
235 B
C#
13 lines
235 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace _Project.Develop.Runtime.Utilities.Conditions
|
|
{
|
|
public interface ICondition
|
|
{
|
|
bool Evaluate();
|
|
}
|
|
}
|