Files
DbusSmsForward/DbusTest/SourceGenerationContext.cs
T

15 lines
479 B
C#

using DbusSmsForward.SettingModel;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
namespace DbusSmsForward;
[JsonSourceGenerationOptions(WriteIndented = true, PropertyNameCaseInsensitive = true)]
[JsonSerializable(typeof(JsonObject))]
[JsonSerializable(typeof(DbusSmsForwardOptions))]
[JsonSerializable(typeof(LegacyAppsettingsModel))]
[JsonSerializable(typeof(appsettingsModel))]
internal partial class SourceGenerationContext : JsonSerializerContext
{
}