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.Serialization;
|
2020-09-24 04:20:32 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Lib.Interface;
|
2020-03-30 17:02:25 +08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
{
|
2020-09-24 04:20:32 +08:00
|
|
|
|
public class PowerPreviewSettings : BasePTModuleSettings, ISettingsConfig
|
2020-03-30 17:02:25 +08:00
|
|
|
|
{
|
2020-07-24 02:01:49 +08:00
|
|
|
|
public const string ModuleName = "File Explorer";
|
|
|
|
|
|
2020-10-10 05:45:30 +08:00
|
|
|
|
[JsonPropertyName("properties")]
|
2020-07-24 02:01:49 +08:00
|
|
|
|
public PowerPreviewProperties Properties { get; set; }
|
2020-03-30 17:02:25 +08:00
|
|
|
|
|
|
|
|
|
public PowerPreviewSettings()
|
|
|
|
|
{
|
2020-07-24 02:01:49 +08:00
|
|
|
|
Properties = new PowerPreviewProperties();
|
2020-07-22 05:06:39 +08:00
|
|
|
|
Version = "1";
|
2020-07-24 02:01:49 +08:00
|
|
|
|
Name = ModuleName;
|
2020-03-30 17:02:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 04:20:32 +08:00
|
|
|
|
public string GetModuleName()
|
2020-03-30 17:02:25 +08:00
|
|
|
|
{
|
2020-09-24 04:20:32 +08:00
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This can be utilized in the future if the settings.json file is to be modified/deleted.
|
|
|
|
|
public bool UpgradeSettingsConfiguration()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
2020-03-30 17:02:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|