Support for:
[ViewModel]
public partial class MyViewModel
{
[RelayCommand(CanExecute = nameof(CanSetName))
private string _firstName;
private string _lastName;
[RelayCommand(CanExecute = nameof(CanSetName))
public string LastName
{
get => _lastName;
set => _lastName = value;
}
public bool CanSetName => true;
}
Support for: