mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
19 lines
396 B
C#
19 lines
396 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; }
|
|
|
|
// Contains the Title of the file or folder
|
|
public string Title { get; set; }
|
|
|
|
}
|
|
}
|