From 4d5ee2b4615ae125225a1ca6e36b10d3f44d96c6 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 13 Aug 2025 13:03:56 +0200 Subject: [PATCH] fix(MailParams): make Placeholders Dictionary --- EnvelopeGenerator.Application/Configurations/MailParams.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/EnvelopeGenerator.Application/Configurations/MailParams.cs b/EnvelopeGenerator.Application/Configurations/MailParams.cs index fb5d599b..41d16e52 100644 --- a/EnvelopeGenerator.Application/Configurations/MailParams.cs +++ b/EnvelopeGenerator.Application/Configurations/MailParams.cs @@ -1,6 +1,4 @@ -using System.Collections.Immutable; - -namespace EnvelopeGenerator.Application.Configurations; +namespace EnvelopeGenerator.Application.Configurations; /// /// @@ -10,5 +8,5 @@ public class MailParams /// /// /// - public required ImmutableDictionary Placeholders { get; init; } + public required Dictionary Placeholders { get; init; } } \ No newline at end of file