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

24 lines
691 B
C#
Raw Normal View History

2020-04-20 21:03:26 +08:00
// 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.
using System.Text.Json.Serialization;
namespace Microsoft.PowerToys.Settings.UI.Lib
{
public class ShortcutGuideSettings : BasePTModuleSettings
2020-04-20 21:03:26 +08:00
{
public const string ModuleName = "Shortcut Guide";
2020-04-20 21:03:26 +08:00
[JsonPropertyName("properties")]
public ShortcutGuideProperties Properties { get; set; }
public ShortcutGuideSettings()
2020-04-20 21:03:26 +08:00
{
Name = ModuleName;
Properties = new ShortcutGuideProperties();
Version = "1.0";
2020-04-20 21:03:26 +08:00
}
}
}