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;
|
|
|
|
|
|
2020-10-23 00:45:48 +08:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
2020-04-08 01:19:14 +08:00
|
|
|
|
{
|
|
|
|
|
public class SndPowerRenameSettings
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("PowerRename")]
|
|
|
|
|
public PowerRenameSettings PowerRename { get; set; }
|
|
|
|
|
|
2020-05-06 05:28:44 +08:00
|
|
|
|
public SndPowerRenameSettings()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public SndPowerRenameSettings(PowerRenameSettings settings)
|
|
|
|
|
{
|
2020-04-11 06:22:07 +08:00
|
|
|
|
PowerRename = settings;
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ToJsonString()
|
|
|
|
|
{
|
|
|
|
|
return JsonSerializer.Serialize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-08 15:19:00 +08:00
|
|
|
|
}
|