namespace Netina.AdminPanel.PWA.Extensions;
public static class BoolExtension
{
public static bool Not( this bool value ) => !value;
}