Files
PowerToys/src/settings-ui/Settings.UI.Library/PluginAdditionalOption.cs

16 lines
424 B
C#
Raw Normal View History

2021-02-26 13:21:58 +02: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.
namespace Microsoft.PowerToys.Settings.UI.Library
{
public class PluginAdditionalOption
{
public string Key { get; set; }
public string DisplayLabel { get; set; }
public bool Value { get; set; }
}
}