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
|
|
|
|
|
{
|
2020-07-22 05:06:39 +08:00
|
|
|
|
public class ShortcutGuideSettings : BasePTModuleSettings
|
2020-04-20 21:03:26 +08:00
|
|
|
|
{
|
2020-07-22 05:06:39 +08:00
|
|
|
|
public const string ModuleName = "Shortcut Guide";
|
2020-04-20 21:03:26 +08:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("properties")]
|
|
|
|
|
public ShortcutGuideProperties Properties { get; set; }
|
|
|
|
|
|
2020-07-22 05:06:39 +08:00
|
|
|
|
public ShortcutGuideSettings()
|
2020-04-20 21:03:26 +08:00
|
|
|
|
{
|
2020-07-22 05:06:39 +08:00
|
|
|
|
Name = ModuleName;
|
|
|
|
|
Properties = new ShortcutGuideProperties();
|
|
|
|
|
Version = "1.0";
|
2020-04-20 21:03:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|