mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-12-14 16:16:24 +01:00
enabled nullable
This commit is contained in:
@@ -5,7 +5,7 @@ namespace ModernWpfPlayground.MvvmStuff
|
||||
{
|
||||
public class RelayCommand : ICommand
|
||||
{
|
||||
private readonly Predicate<object> _canExecute;
|
||||
private readonly Predicate<object>? _canExecute;
|
||||
private readonly Action<object> _execute;
|
||||
|
||||
public RelayCommand(Action<object> execute)
|
||||
|
||||
Reference in New Issue
Block a user