Allow nullable for Configuration

This commit is contained in:
Garulf 2023-11-18 18:43:17 -05:00
parent 57541b351a
commit 1cafae8278

View file

@ -10,7 +10,7 @@ namespace Flow.Launcher.Core.Plugin
{
public class JsonRPCPluginSettings
{
public required JsonRpcConfigurationModel Configuration { get; init; }
public required JsonRpcConfigurationModel? Configuration { get; init; }
public required string SettingPath { get; init; }
public Dictionary<string, FrameworkElement> SettingControls { get; } = new();