19 lines
394 B
C#
19 lines
394 B
C#
namespace Erp.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; }
|
|
|
|
}
|
|
|