2020-04-07 10:19:14 -07: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 06:08:56 -07:00
using System.Text.Json ;
2020-07-21 14:06:39 -07:00
using System.Text.Json.Serialization ;
2020-04-02 06:08:56 -07:00
2020-10-22 09:45:48 -07:00
namespace Microsoft.PowerToys.Settings.UI.Library
2020-04-02 06:08:56 -07:00
{
public abstract class BasePTModuleSettings
{
2020-04-07 10:19:14 -07:00
// Gets or sets name of the powertoy module.
2020-07-21 14:06:39 -07:00
[JsonPropertyName("name")]
public string Name { get ; set ; }
2020-04-07 10:19:14 -07:00
// Gets or sets the powertoys version.
2020-07-21 14:06:39 -07:00
[JsonPropertyName("version")]
public string Version { get ; set ; }
2020-04-02 06:08:56 -07:00
2020-04-07 10:19:14 -07:00
// converts the current to a json string.
2020-04-02 06:08:56 -07:00
public virtual string ToJsonString ( )
{
2020-07-23 16:04:04 -07:00
// By default JsonSerializer will only serialize the properties in the base class. This can be avoided by passing the object type (more details at https://stackoverflow.com/a/62498888)
2020-08-19 15:59:10 -07:00
return JsonSerializer . Serialize ( this , GetType ( ) ) ;
2020-04-02 06:08:56 -07:00
}
2021-03-24 16:13:33 +02:00
public override int GetHashCode ( )
{
return ToJsonString ( ) . GetHashCode ( ) ;
}
public override bool Equals ( object obj )
{
var settings = obj as BasePTModuleSettings ;
return settings ? . ToJsonString ( ) = = ToJsonString ( ) ;
}
2020-04-02 06:08:56 -07:00
}
}