mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 18:58:29 +08:00
30 lines
1016 B
C#
30 lines
1016 B
C#
|
// 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; }
|
|||
|
public BoolProperty bool_mru_enabled { get; set; }
|
|||
|
public IntProperty int_max_mru_size { get; set; }
|
|||
|
public BoolProperty bool_show_icon_on_menu { get; set; }
|
|||
|
public BoolProperty bool_show_extended_menu { get; set; }
|
|||
|
}
|
|||
|
}
|
|||
|
|