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

21 lines
623 B
C#
Raw Normal View History

2020-06-06 12:13:22 +00:00
using Flow.Launcher.Plugin.Explorer.Search.FolderLinks;
2020-05-24 22:14:21 +00:00
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Flow.Launcher.Plugin.Explorer
{
public class Settings
{
2020-05-24 22:14:21 +00:00
[JsonProperty]
public int MaxResult { get; set; } = 100;
[JsonProperty]
2020-06-06 12:13:22 +00:00
public List<FolderLink> QuickFolderAccessLinks { get; set; } = new List<FolderLink>();
[JsonProperty]
public bool UseWindowsIndexForDirectorySearch { get; set; } = true;
[JsonProperty]
2020-06-06 12:13:22 +00:00
public List<FolderLink> IndexSearchExcludedSubdirectoryPaths { get; set; } = new List<FolderLink>();
}
2020-06-06 12:13:22 +00:00
}