feat(ui): scaffold islands shell and child VMs
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace ClaudeDo.Ui.ViewModels.Islands;
|
||||
|
||||
public sealed partial class ListsIslandViewModel : ViewModelBase
|
||||
{
|
||||
public event EventHandler? SelectionChanged;
|
||||
[ObservableProperty] private ListNavItemViewModel? _selectedList;
|
||||
partial void OnSelectedListChanged(ListNavItemViewModel? value) =>
|
||||
SelectionChanged?.Invoke(this, EventArgs.Empty);
|
||||
}
|
||||
Reference in New Issue
Block a user