mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-28 20:27:54 +08:00
26 lines
593 B
C#
26 lines
593 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 SndShortcutGuideSettings
|
|
{
|
|
[JsonPropertyName("Shortcut Guide")]
|
|
public ShortcutGuideSettings ShortcutGuide { get; set; }
|
|
|
|
public SndShortcutGuideSettings(ShortcutGuideSettings settings)
|
|
{
|
|
this.ShortcutGuide = settings;
|
|
}
|
|
|
|
public string ToJsonString()
|
|
{
|
|
return JsonSerializer.Serialize(this);
|
|
}
|
|
}
|
|
}
|