feat(MailConfig): Schnittstelle zur Mail-Konfiguration über appsettings erstellt.

This commit is contained in:
Developer 02
2024-10-09 00:22:23 +02:00
parent b4e0e4b6b2
commit bfd4e6a8ed
7 changed files with 60 additions and 38 deletions

View File

@@ -0,0 +1,7 @@
namespace EnvelopeGenerator.Application.Configurations
{
public class MailConfig
{
public required Dictionary<string, string> Placeholders { get; init; } = new();
}
}