Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs

24 lines
953 B
C#
Raw Normal View History

using Flow.Launcher.Plugin.Explorer.Search;
2021-01-26 09:48:06 +00:00
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
using System.Collections.Generic;
namespace Flow.Launcher.Plugin.Explorer
{
public class Settings
{
2020-05-24 22:14:21 +00:00
public int MaxResult { get; set; } = 100;
public List<AccessLink> QuickAccessLinks { get; set; } = new List<AccessLink>();
// as at v1.7.0 this is to maintain backwards compatibility, need to be removed afterwards.
public List<AccessLink> QuickFolderAccessLinks { get; set; } = new List<AccessLink>();
public bool UseWindowsIndexForDirectorySearch { get; set; } = true;
public List<AccessLink> IndexSearchExcludedSubdirectoryPaths { get; set; } = new List<AccessLink>();
2020-07-14 19:50:48 +00:00
public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign;
public string FileContentSearchActionKeyword { get; set; } = Constants.DefaultContentSearchActionKeyword;
}
2020-06-06 12:13:22 +00:00
}