Files
PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Folder/SearchResult.cs
Davide Giacometti 6d138e80fb [Analyzers] Update StyleCop and enable SA1200 (#22707)
* update StyleCop and enable SA1200

* Fix merge issues

* fix build and added using rule
2022-12-18 13:27:14 +00:00

16 lines
402 B
C#

// 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.
using Wox.Plugin.Interfaces;
namespace Microsoft.Plugin.Folder
{
public class SearchResult : IFileDropResult
{
public string Path { get; set; }
public ResultType Type { get; set; }
}
}