using Flow.Launcher.Plugin.Explorer.Search; using Flow.Launcher.Plugin.Explorer.Search.FolderLinks; using System.Collections.Generic; namespace Flow.Launcher.Plugin.Explorer { public class Settings { public int MaxResult { get; set; } = 100; public List QuickFolderAccessLinks { get; set; } = new List(); public bool UseWindowsIndexForDirectorySearch { get; set; } = true; public List IndexSearchExcludedSubdirectoryPaths { get; set; } = new List(); public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign; public string FileContentSearchActionKeyword { get; set; } = Constants.DefaultContentSearchActionKeyword; } }