2020-04-20 21:03:26 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
2020-04-27 08:34:03 +08:00
|
|
|
|
public SndShortcutGuideSettings()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 21:03:26 +08:00
|
|
|
|
public SndShortcutGuideSettings(ShortcutGuideSettings settings)
|
|
|
|
|
{
|
|
|
|
|
this.ShortcutGuide = settings;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ToJsonString()
|
|
|
|
|
{
|
|
|
|
|
return JsonSerializer.Serialize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-27 08:34:03 +08:00
|
|
|
|
}
|