InkForge/app/InkForge.Common/Properties/ConfigContext.cs

8 lines
276 B
C#
Raw Normal View History

2024-02-09 01:23:38 +01:00
using System.Text.Json.Serialization;
namespace InkForge.Common.Properties;
[JsonSerializable(typeof(IDictionary<string, object>))]
[JsonSourceGenerationOptions(GenerationMode = JsonSourceGenerationMode.Metadata)]
public partial class ConfigContext : JsonSerializerContext;