Files
PowerToys/src/modules/launcher/Plugins/Wox.Plugin.Indexer/SearchHelper/SearchResult.cs

15 lines
300 B
C#
Raw Normal View History

2020-03-16 14:30:38 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wox.Plugin.Indexer.SearchHelper
{
public class SearchResult
{
// Contains the Path of the file or folder
public string Path { get; set; }
}
}