2020-04-08 01:19:14 +08: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.
|
|
|
|
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
{
|
|
|
|
|
public class PowerRenameProperties
|
|
|
|
|
{
|
|
|
|
|
public PowerRenameProperties()
|
|
|
|
|
{
|
2020-04-18 06:25:08 +08:00
|
|
|
|
PersistState = new BoolProperty();
|
|
|
|
|
MRUEnabled = new BoolProperty();
|
|
|
|
|
MaxMRUSize = new IntProperty();
|
|
|
|
|
ShowIcon = new BoolProperty();
|
|
|
|
|
ExtendedContextMenuOnly = new BoolProperty();
|
2020-05-06 05:28:44 +08:00
|
|
|
|
Enabled = new BoolProperty();
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 05:28:44 +08:00
|
|
|
|
public BoolProperty Enabled { get; set; }
|
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_persist_input")]
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public BoolProperty PersistState { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_mru_enabled")]
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public BoolProperty MRUEnabled { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("int_max_mru_size")]
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public IntProperty MaxMRUSize { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_show_icon_on_menu")]
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public BoolProperty ShowIcon { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_show_extended_menu")]
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public BoolProperty ExtendedContextMenuOnly { get; set; }
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|