using System; using System.Globalization; using System.Windows.Data; namespace Sheas_Cealer.Convs; internal class MainNginxButtonIsEnabledConv : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { bool isNginxExist = (bool)value; return isNginxExist; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) => throw new NotImplementedException(); }