<PackageReference Include="System.ObjectModel" Version="4.0.11-beta-23409" />

ICommand

public interface ICommand
Defines a command.

Occurs when changes occur that affect whether or not the command should execute.

bool CanExecute(object parameter)

Defines the method that determines whether the command can execute in its current state.

void Execute(object parameter)

Defines the method to be called when the command is invoked.