2025-01-29 00:46:38 +08:00

17 lines
443 B
C#

using Wox.Plugin.Interfaces;
namespace Community.PowerToys.Run.Plugin.Everything.SearchHelper
{
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; }
}
}