2020-07-23 07:55:04 +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-17 02:45:27 +08:00
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
2020-10-23 00:45:48 +08:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
2020-04-17 02:45:27 +08:00
|
|
|
|
{
|
|
|
|
|
public class SndFancyZonesSettings
|
|
|
|
|
{
|
|
|
|
|
public FancyZonesSettings FancyZones { get; set; }
|
|
|
|
|
|
2020-05-08 23:22:57 +08:00
|
|
|
|
public SndFancyZonesSettings()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 02:45:27 +08:00
|
|
|
|
public SndFancyZonesSettings(FancyZonesSettings settings)
|
|
|
|
|
{
|
2020-08-20 06:59:10 +08:00
|
|
|
|
FancyZones = settings;
|
2020-04-17 02:45:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ToJsonString()
|
|
|
|
|
{
|
|
|
|
|
return JsonSerializer.Serialize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|