sozsoft-platform/api/modules/Sozsoft.MailQueue/Domain.Shared/MailQueueWorkerOptions.cs
2026-06-26 23:53:30 +03:00

10 lines
410 B
C#

namespace Sozsoft.MailQueue.Domain.Shared;
public class MailQueueWorkerOptions
{
public string MailType { get; set; } // Template Tipi
public string MailSubject { get; set; } // Mail konusu
public string MailTemplate { get; set; } // Render edilecek html template
public string TableName { get; set; } // Bu maildeki tablolar örn. {0:MT3_GECIKEN_SIPARIS:IN:Order Delay Notification:0:}
}