sozsoft-platform/api/modules/Sozsoft.Sender/Mail/SozsoftBackgroundEmailSendingJobArgs.cs
2026-06-02 21:47:01 +03:00

21 lines
479 B
C#

using Volo.Abp.MultiTenancy;
namespace Sozsoft.Sender.Mail;
[Serializable]
public class ErpBackgroundEmailSendingJobArgs : IMultiTenant
{
public Guid? TenantId { get; set; }
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; }
}