sozsoft-platform/api/modules/Sozsoft.MailQueue/Domain.Shared/MailQueueWorkerOptions.cs

11 lines
406 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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:}
}