mirror of
https://github.com/lin-ycv/EverythingPowerToys.git
synced 2025-01-07 03:16:41 +08:00
17 lines
430 B
C#
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; }
|
|
}
|
|
}
|