Added a SearchResult Helper class

This commit is contained in:
Alekhya Reddy Kommuru
2020-03-16 14:30:38 -07:00
parent 9537dd793d
commit dacd13ee30
4 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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; }
}
}