mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 10:48:23 +08:00
19 lines
406 B
C#
19 lines
406 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Text.Json;
|
|||
|
|
|||
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|||
|
{
|
|||
|
public abstract class BasePTModuleSettings
|
|||
|
{
|
|||
|
public string name { get; set; }
|
|||
|
public string version { get; set; }
|
|||
|
|
|||
|
public virtual string ToJsonString()
|
|||
|
{
|
|||
|
return JsonSerializer.Serialize(this);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|