// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
usingSystem.Text.Json.Serialization;
namespaceMicrosoft.PowerToys.Settings.UI.Lib
{
publicclassGenericProperty<T>
{
[JsonPropertyName("value")]
publicTValue{get;set;}
publicGenericProperty(Tvalue)
{
Value=value;
}
// Added a parameterless constructor because of an exception during deserialization. More details here: https://docs.microsoft.com/en-us/dotnet/standard/serialization/system-text-json-how-to#deserialization-behavior