diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/ActionKeywordModel.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/ActionKeywordModel.cs index 2f614ead8..d4cd1348e 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/ActionKeywordModel.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/ActionKeywordModel.cs @@ -1,13 +1,15 @@ using System.ComponentModel; using System.Runtime.CompilerServices; +#nullable enable + namespace Flow.Launcher.Plugin.Explorer.Views { public class ActionKeywordModel : INotifyPropertyChanged { - private static Settings _settings; + private static Settings _settings = null!; - public event PropertyChangedEventHandler PropertyChanged; + public event PropertyChangedEventHandler? PropertyChanged; public static void Init(Settings settings) { @@ -54,4 +56,4 @@ namespace Flow.Launcher.Plugin.Explorer.Views } } } -} \ No newline at end of file +}