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