mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
27 lines
No EOL
838 B
C#
27 lines
No EOL
838 B
C#
using Flow.Launcher.Plugin.Explorer.Search.FolderLinks;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer
|
|
{
|
|
public class Settings
|
|
{
|
|
[JsonProperty]
|
|
public int MaxResult { get; set; } = 100;
|
|
|
|
[JsonProperty]
|
|
public List<FolderLink> QuickFolderAccessLinks { get; set; } = new List<FolderLink>();
|
|
|
|
[JsonProperty]
|
|
public bool UseWindowsIndexForDirectorySearch { get; set; } = true;
|
|
|
|
[JsonProperty]
|
|
public List<FolderLink> IndexSearchExcludedSubdirectoryPaths { get; set; } = new List<FolderLink>();
|
|
|
|
[JsonProperty]
|
|
public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign;
|
|
|
|
[JsonProperty]
|
|
public string FileContentSearchActionKeyword { get; set; } = "doc:";
|
|
}
|
|
} |