2026-04-02 19:56:35 -05:00
|
|
|
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))]
|
2026-04-02 19:56:35 -05:00
|
|
|
internal partial class AppJsonContext : JsonSerializerContext
|
|
|
|
|
{
|
2026-04-06 09:01:23 -05:00
|
|
|
}
|