Files
stevanfreeborn.secureconfig/src/StevanFreeborn.Extensions.Configuration.Secure.Sample/AppJsonContext.cs
T

10 lines
295 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace StevanFreeborn.Extensions.Configuration.Secure.Sample;
[JsonSerializable(typeof(ApiOptions))]
2026-04-02 20:54:28 -05:00
[JsonSerializable(typeof(DatabaseSettings))]
[JsonSerializable(typeof(SmtpSettings))]
internal partial class AppJsonContext : JsonSerializerContext
{
2026-04-06 09:01:23 -05:00
}