14 lines
317 B
C#
14 lines
317 B
C#
namespace DigitalData.EmailProfilerDispatcher.Abstraction.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class TemplatePlaceholderAttribute : Attribute
|
|
{
|
|
public readonly string Placeholder;
|
|
|
|
public TemplatePlaceholderAttribute(string placeholder)
|
|
{
|
|
Placeholder = placeholder;
|
|
}
|
|
}
|
|
}
|