2023-01-07 02:20:22 +08:00
|
|
|
|
using Wox.Plugin.Interfaces;
|
2022-12-13 14:47:07 +01:00
|
|
|
|
|
2025-01-25 00:53:35 +08:00
|
|
|
|
namespace Community.PowerToys.Run.Plugin.Everything.SearchHelper
|
2023-01-07 02:20:22 +08:00
|
|
|
|
{
|
2022-12-13 14:47:07 +01:00
|
|
|
|
public class SearchResult : IFileDropResult
|
2022-03-09 00:39:34 +08:00
|
|
|
|
{
|
|
|
|
|
// Contains the Path of the file or folder
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
|
|
// Contains the Title of the file or folder
|
|
|
|
|
public string Title { get; set; }
|
2022-11-05 00:54:48 +08:00
|
|
|
|
|
|
|
|
|
// States if result is a file
|
|
|
|
|
public bool File { get; set; }
|
2022-03-09 00:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|