Viewmodel caching WIP

This commit is contained in:
TheXamlGuy
2024-01-12 21:57:47 +00:00
parent 2a773f26db
commit b47a563876
9 changed files with 59 additions and 15 deletions
@@ -0,0 +1,11 @@
namespace Hyperbar.Windows.Primary;
public class ConfigurationChangedHandler :
INotificationHandler<ConfigurationChanged<PrimaryWidgetConfiguration>>
{
public ValueTask Handle(ConfigurationChanged<PrimaryWidgetConfiguration> notification,
CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}