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

11 lines
296 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-02 20:54:28 -05:00
}