This commit is contained in:
TheXamlGuy
2024-05-28 17:30:40 +01:00
parent f8acc36022
commit 7765c31786
22 changed files with 80 additions and 91 deletions
+7 -2
View File
@@ -5,8 +5,8 @@ namespace Bitvault;
[Aggerate(nameof(ItemContentViewModel))]
public partial class ItemContentViewModel :
ObservableCollection<IItemEntryViewModel>,
IItemEntryViewModel
IItemEntryViewModel,
INotificationHandler<NotifyEventArgs<ItemCategory<string>>>
{
public ItemContentViewModel(IServiceProvider provider,
IServiceFactory factory, IMediator mediator,
@@ -20,4 +20,9 @@ public partial class ItemContentViewModel :
}
public IContentTemplate Template { get; set; }
public Task Handle(NotifyEventArgs<ItemCategory<string>> args)
{
throw new NotImplementedException();
}
}