sozsoft-platform/api/modules/Sozsoft.Sender/Mail/SozsoftBackgroundEmailSendingJobArgs.cs

20 lines
398 B
C#
Raw Normal View History

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