6 lines
146 B
C#
6 lines
146 B
C#
|
|
namespace NetinaShop.AdminPanel.PWA.Extensions;
|
|||
|
|
|
|||
|
|
public static class BoolExtension
|
|||
|
|
{
|
|||
|
|
public static bool Not( this bool value ) => !value;
|
|||
|
|
}
|