using Hyperbar.Windows.Controls; namespace Hyperbar.Windows.Primary; public class AppConfigurationChangedHandler(DesktopBar desktopFlyout, AppConfiguration configuration) : INotificationHandler> { public Task Handle(ConfigurationChanged notification, CancellationToken cancellationToken) { desktopFlyout.Placement = configuration.Placement; return Task.CompletedTask; } }