2024-02-09 01:23:38 +01:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
2024-02-16 02:23:58 +01:00
|
|
|
namespace InkForge.Desktop.Properties;
|
2024-02-09 01:23:38 +01:00
|
|
|
|
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;
|