12 lines
328 B
C#
12 lines
328 B
C#
namespace EnvelopeGenerator.Application.Configurations;
|
|
|
|
public class DispatcherParams
|
|
{
|
|
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;
|
|
} |