mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 18:58:29 +08:00
30 lines
660 B
C#
30 lines
660 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
{
|
|
public class PowerRenameSettingsIPCMessage
|
|
{
|
|
[JsonPropertyName("powertoys")]
|
|
public SndPowerRenameSettings Powertoys { get; set; }
|
|
|
|
public PowerRenameSettingsIPCMessage()
|
|
{
|
|
|
|
}
|
|
|
|
public PowerRenameSettingsIPCMessage(SndPowerRenameSettings settings)
|
|
{
|
|
this.Powertoys = settings;
|
|
}
|
|
|
|
public string ToJsonString()
|
|
{
|
|
return JsonSerializer.Serialize(this);
|
|
}
|
|
}
|
|
}
|