mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-27 03:14:18 +08:00
29 lines
659 B
C#
29 lines
659 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|