RegistryPreviewProperties.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System.Text.Json.Serialization; 6 7 namespace Microsoft.PowerToys.Settings.UI.Library 8 { 9 public class RegistryPreviewProperties 10 { 11 public RegistryPreviewProperties() 12 { 13 DefaultRegApp = false; 14 } 15 16 [JsonPropertyName("default_reg_app")] 17 public bool DefaultRegApp { get; set; } 18 } 19 }