PowerToys/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerRenameProperties.cs

36 lines
1.1 KiB
C#
Raw Normal View History

// 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 System.Text.Json.Serialization;
namespace Microsoft.PowerToys.Settings.UI.Lib
{
public class PowerRenameProperties
{
public PowerRenameProperties()
{
PersistState = new BoolProperty();
MRUEnabled = new BoolProperty();
MaxMRUSize = new IntProperty();
ShowIcon = new BoolProperty();
ExtendedContextMenuOnly = new BoolProperty();
}
[JsonPropertyName("bool_persist_input")]
public BoolProperty PersistState { get; set; }
2020-04-08 15:19:00 +08:00
[JsonPropertyName("bool_mru_enabled")]
public BoolProperty MRUEnabled { get; set; }
2020-04-08 15:19:00 +08:00
[JsonPropertyName("int_max_mru_size")]
public IntProperty MaxMRUSize { get; set; }
2020-04-08 15:19:00 +08:00
[JsonPropertyName("bool_show_icon_on_menu")]
public BoolProperty ShowIcon { get; set; }
2020-04-08 15:19:00 +08:00
[JsonPropertyName("bool_show_extended_menu")]
public BoolProperty ExtendedContextMenuOnly { get; set; }
}
}