12 lines
356 B
C#
12 lines
356 B
C#
namespace Hyperbar.Windows.Primary;
|
|
|
|
public class ConfigurationChangedHandler :
|
|
INotificationHandler<ConfigurationChanged<PrimaryWidgetConfiguration>>
|
|
{
|
|
public ValueTask Handle(ConfigurationChanged<PrimaryWidgetConfiguration> notification,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|