remove readonly field to allow init in Init()

This commit is contained in:
弘韬 张 2021-03-18 11:59:48 +08:00
parent 6430e2562d
commit 8acde56455

View file

@ -18,13 +18,8 @@ namespace Flow.Launcher.Plugin.BrowserBookmark
private List<Bookmark> cachedBookmarks = new List<Bookmark>();
private readonly Settings _settings;
private readonly PluginJsonStorage<Settings> _storage;
public Main()
{
}
private Settings _settings { get; set;}
private PluginJsonStorage<Settings> _storage { get; set;}
public void Init(PluginInitContext context)
{