feat(Abstraction.Attributes): als separates Projekt erstellt, um .net framework als Ziel hinzuzufügen

This commit is contained in:
Developer 02
2025-05-20 16:35:30 +02:00
parent e372a5a5b2
commit 8fc23b0055
4 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace DigitalData.EmailProfilerDispatcher.Abstraction.Attributes
{
[AttributeUsage(AttributeTargets.Property)]
public class TemplatePlaceholderAttribute : Attribute
{
public readonly string Placeholder;
public TemplatePlaceholderAttribute(string placeholder)
{
Placeholder = placeholder;
}
}
}