2020-08-10 13:28:22 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
2022-12-18 14:27:14 +01:00
|
|
|
|
using Wox.Plugin.Interfaces;
|
|
|
|
|
|
|
2020-08-10 13:28:22 -07:00
|
|
|
|
namespace Microsoft.Plugin.Folder
|
|
|
|
|
|
{
|
2022-12-09 14:01:44 +01:00
|
|
|
|
public class SearchResult : IFileDropResult
|
2020-08-10 13:28:22 -07:00
|
|
|
|
{
|
2022-12-09 14:01:44 +01:00
|
|
|
|
public string Path { get; set; }
|
2020-08-10 13:28:22 -07:00
|
|
|
|
|
|
|
|
|
|
public ResultType Type { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|