PowerToys/src/core/Microsoft.PowerToys.Settings.UI.Lib/FancyZonesSettings.cs

22 lines
624 B
C#
Raw Normal View History

2020-04-16 20:45:27 +02: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.
using System.Text.Json.Serialization;
namespace Microsoft.PowerToys.Settings.UI.Lib
{
public class FancyZonesSettings : BasePTModuleSettings
2020-04-16 20:45:27 +02:00
{
public FancyZonesSettings()
{
Version = string.Empty;
Name = string.Empty;
Properties = new FZConfigProperties();
2020-04-16 20:45:27 +02:00
}
[JsonPropertyName("properties")]
public FZConfigProperties Properties { get; set; }
}
}