/ src / settings-ui / Settings.UI.Library / ImagerResizerKeepDateModified.cs
ImagerResizerKeepDateModified.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 ImagerResizerKeepDateModified
10      {
11          [JsonPropertyName("value")]
12          public bool Value { get; set; }
13  
14          public ImagerResizerKeepDateModified()
15          {
16              Value = false;
17          }
18      }
19  }