feat(AnnotationParams): Erstellt, um Annotationen über Appsettings zu konfigurieren.

This commit is contained in:
Developer 02
2025-03-20 09:22:36 +01:00
parent 6c222ca9ad
commit df019a7243
4 changed files with 17 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.Web.Models;
public class AnnotationParams
{
public required Dictionary<string, Annotation> Annotations { get; init; }
}