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-11 06:22:07 +08:00
|
|
|
|
PersistInput = new BoolProperty();
|
|
|
|
|
MruEnabled = new BoolProperty();
|
|
|
|
|
MaxMruSize = new IntProperty();
|
|
|
|
|
ShowIconInMenu = new BoolProperty();
|
|
|
|
|
ShowExtendedMenu = new BoolProperty();
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_persist_input")]
|
|
|
|
|
public BoolProperty PersistInput { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_mru_enabled")]
|
|
|
|
|
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")]
|
|
|
|
|
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")]
|
|
|
|
|
public BoolProperty ShowIconInMenu { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
[JsonPropertyName("bool_show_extended_menu")]
|
|
|
|
|
public BoolProperty ShowExtendedMenu { get; set; }
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|