EverythingPowerToys/SearchHelper/SearchResult.cs
Lin Yu-Chieh (Victor) 2590926641 v0.66.0
2023-01-07 02:20:22 +08:00

17 lines
430 B
C#

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