sozsoft-platform/api/modules/Sozsoft.MailQueue/Domain.Shared/MailQueueWorkerOptions.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

10 lines
406 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 Tablo { get; set; } // Bu maildeki tablolar örn. {0:MT3_GECIKEN_SIPARIS:IN:Order Delay Notification:0:}
}