mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00

* first test and changes * last changes * last changes * last changes * improve exception * fix spellings * spell fixes * search improvements, installer, tests, code cleanup * remove left-over * update dev docs * fix spelling * update namings * improve scoring * spell checker * dev docs * update images * update expect.txt for this pr
26 lines
721 B
C#
26 lines
721 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.
|
|
|
|
namespace Microsoft.PowerToys.Run.Plugin.System.Components
|
|
{
|
|
internal class SystemPluginContext
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the type of the result
|
|
/// </summary>
|
|
public ResultContextType Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the context data for the command/results
|
|
/// </summary>
|
|
public string Data { get; set; }
|
|
}
|
|
|
|
internal enum ResultContextType
|
|
{
|
|
Command, // Reserved for later usage
|
|
NetworkAdapterInfo,
|
|
}
|
|
}
|