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;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public class PowerRenameProperties
|
|
|
|
|
{
|
|
|
|
|
public PowerRenameProperties()
|
|
|
|
|
{
|
|
|
|
|
this.bool_persist_input = new BoolProperty();
|
|
|
|
|
this.bool_mru_enabled = new BoolProperty();
|
|
|
|
|
this.int_max_mru_size = new IntProperty();
|
|
|
|
|
this.bool_show_icon_on_menu = new BoolProperty();
|
|
|
|
|
this.bool_show_extended_menu = new BoolProperty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BoolProperty bool_persist_input { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public BoolProperty bool_mru_enabled { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public IntProperty int_max_mru_size { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public BoolProperty bool_show_icon_on_menu { get; set; }
|
2020-04-08 15:19:00 +08:00
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public BoolProperty bool_show_extended_menu { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|