2020-04-08 01:19:14 +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.
|
|
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
{
|
|
|
|
|
public abstract class BasePTModuleSettings
|
|
|
|
|
{
|
2020-04-08 01:19:14 +08:00
|
|
|
|
// Gets or sets name of the powertoy module.
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public string name { get; set; }
|
2020-04-08 01:19:14 +08:00
|
|
|
|
|
|
|
|
|
// Gets or sets the powertoys version.
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public string version { get; set; }
|
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
// converts the current to a json string.
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public virtual string ToJsonString()
|
|
|
|
|
{
|
|
|
|
|
return JsonSerializer.Serialize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|