Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/Everything/EverythingSearchOption.cs

13 lines
No EOL
411 B
C#

using Flow.Launcher.Plugin.Everything.Everything;
namespace Flow.Launcher.Plugin.Explorer.Search.Everything
{
public record struct EverythingSearchOption(string Keyword,
SortOption SortOption,
bool IsContentSearch = false,
string ContentSearchKeyword = "",
string ParentPath = "",
bool IsRecursive = true,
int Offset = 0,
int MaxCount = 100);
}