PowerToys/src/core/Microsoft.PowerToys.Settings.UI.Lib/SndShortcutGuideSettings.cs

30 lines
767 B
C#
Raw Normal View History

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