refactor(Configurations): move to common

This commit is contained in:
2025-09-09 18:17:39 +02:00
parent c8a0264ed8
commit 570a192438
14 changed files with 15 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
namespace EnvelopeGenerator.Application.Common.Configurations;
/// <summary>
///
/// </summary>
public class MailParams
{
/// <summary>
///
/// </summary>
public required Dictionary<string, string> Placeholders { get; init; }
}