2020-03-30 17:02:25 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
{
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public class SndModuleSettings<S>
|
2020-03-30 17:02:25 +08:00
|
|
|
|
{
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public S powertoys { get; set; }
|
2020-03-30 17:02:25 +08:00
|
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public SndModuleSettings(S settings)
|
2020-03-30 17:02:25 +08:00
|
|
|
|
{
|
2020-04-02 21:08:56 +08:00
|
|
|
|
this.powertoys = settings;
|
2020-03-30 17:02:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-02 21:08:56 +08:00
|
|
|
|
public string ToJsonString()
|
2020-03-30 17:02:25 +08:00
|
|
|
|
{
|
2020-04-02 21:08:56 +08:00
|
|
|
|
return JsonSerializer.Serialize(this);
|
2020-03-30 17:02:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|