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,8 @@
|
||||
namespace _Project.Develop.Runtime.Utilities.Conditions
|
||||
{
|
||||
public class LogicOperationsUtils
|
||||
{
|
||||
public static bool And(bool a, bool b) => a && b;
|
||||
public static bool Or(bool a, bool b) => a || b;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user