17 lines
443 B
C#
Raw Normal View History

2023-01-07 02:20:22 +08:00
using Wox.Plugin.Interfaces;
namespace Community.PowerToys.Run.Plugin.Everything.SearchHelper
2023-01-07 02:20:22 +08:00
{
public class SearchResult : IFileDropResult
{
// 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; }
// States if result is a file
public bool File { get; set; }
}
}