13 lines
310 B
C#
13 lines
310 B
C#
namespace EnvelopeGenerator.Application
|
|
{
|
|
public class DispatcherConfig
|
|
{
|
|
public int SendingProfile { get; init; } = 1;
|
|
|
|
public string AddedWho { get; init; } = "DDEnvelopGenerator";
|
|
|
|
public int ReminderTypeId { get; init; } = 202377;
|
|
|
|
public string EmailAttmt1 { get; init; } = string.Empty;
|
|
}
|
|
} |