mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
35 lines
No EOL
1.2 KiB
C#
35 lines
No EOL
1.2 KiB
C#
using Flow.Launcher.Plugin.Everything.Everything;
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer.Search.Everything
|
|
{
|
|
public struct EverythingSearchOption
|
|
{
|
|
public EverythingSearchOption(string keyword,
|
|
SortOption sortOption,
|
|
bool isContentSearch = false,
|
|
string contentSearchKeyword = "",
|
|
string parentPath = "",
|
|
bool isRecursive = true,
|
|
int offset = 0,
|
|
int maxCount = 100)
|
|
{
|
|
Keyword = keyword;
|
|
SortOption = sortOption;
|
|
ContentSearchKeyword = contentSearchKeyword;
|
|
IsContentSearch = isContentSearch;
|
|
ParentPath = parentPath;
|
|
IsRecursive = isRecursive;
|
|
Offset = offset;
|
|
MaxCount = maxCount;
|
|
}
|
|
public string Keyword { get; set; }
|
|
public SortOption SortOption { get; set; }
|
|
public string ParentPath { get; set; }
|
|
public bool IsRecursive { get; set; }
|
|
|
|
public bool IsContentSearch { get; set; }
|
|
public string ContentSearchKeyword { get; set; }
|
|
public int Offset { get;set; }
|
|
public int MaxCount { get; set; }
|
|
}
|
|
} |