InkForge/app/InkForge.Common/Properties/ConfigContext.cs
2024-02-09 01:23:38 +01:00

7 lines
276 B
C#

using System.Text.Json.Serialization;
namespace InkForge.Common.Properties;
[JsonSerializable(typeof(IDictionary<string, object>))]
[JsonSourceGenerationOptions(GenerationMode = JsonSourceGenerationMode.Metadata)]
public partial class ConfigContext : JsonSerializerContext;