sozsoft-platform/api/modules/Sozsoft.Sender/Mail/SozsoftBackgroundEmailSendingJobArgs.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

19 lines
398 B
C#

namespace Sozsoft.Sender.Mail;
[Serializable]
public class ErpBackgroundEmailSendingJobArgs
{
public string[] To { get; set; }
public KeyValuePair<string, string>? Sender { get; set; }
public dynamic? Params { get; set; }
public string? Subject { get; set; }
public Dictionary<string, string>? Attachments { get; set; }
public string? TextContent { get; set; }
}