mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
15 lines
300 B
C#
15 lines
300 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|