// 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
{
///
/// Gets or sets the type of the result
///
public ResultContextType Type { get; set; }
///
/// Gets or sets the context data for the command/results
///
public string Data { get; set; }
}
internal enum ResultContextType
{
Command, // Reserved for later usage
NetworkAdapterInfo,
}
}