using System.Windows.Input; namespace EmbyToolbox.ViewModels; public sealed class RelayCommand : ICommand { private readonly Action _execute; private readonly Func? _canExecute; public RelayCommand(Action execute, Func? canExecute = null) { _execute = _ => execute(); _canExecute = canExecute is null ? null : _ => canExecute(); } public RelayCommand(Action execute, Func? canExecute = null) { _execute = execute; _canExecute = canExecute; } public bool CanExecute(object? parameter) { return _canExecute?.Invoke(parameter) ?? true; } public void Execute(object? parameter) { _execute(parameter); } public event EventHandler? CanExecuteChanged; public void RaiseCanExecuteChanged() { CanExecuteChanged?.Invoke(this, EventArgs.Empty); } }