2025-07-16 13:28:17 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer.Search.Everything
|
2022-05-15 20:15:56 +00:00
|
|
|
|
{
|
2023-01-26 06:55:25 +00:00
|
|
|
|
public record struct EverythingSearchOption(
|
|
|
|
|
|
string Keyword,
|
2025-07-16 13:28:17 +00:00
|
|
|
|
EverythingSortOption SortOption,
|
2023-01-26 06:55:25 +00:00
|
|
|
|
bool IsContentSearch = false,
|
2022-09-24 19:23:59 +00:00
|
|
|
|
string ContentSearchKeyword = default,
|
|
|
|
|
|
string ParentPath = default,
|
2022-08-16 22:45:36 +00:00
|
|
|
|
bool IsRecursive = true,
|
2023-01-26 06:55:25 +00:00
|
|
|
|
int Offset = 0,
|
|
|
|
|
|
int MaxCount = 100,
|
2024-07-15 06:52:12 +00:00
|
|
|
|
bool IsFullPathSearch = true,
|
|
|
|
|
|
bool IsRunCounterEnabled = true
|
2023-01-26 06:55:25 +00:00
|
|
|
|
);
|
2022-09-22 00:18:20 +00:00
|
|
|
|
}
|