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

9 lines
324 B
C#
Raw Normal View History

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