18 lines
395 B
C#
18 lines
395 B
C#
namespace Kurs.Sender.Mail;
|
|
|
|
[Serializable]
|
|
public class KursBackgroundEmailSendingJobArgs
|
|
{
|
|
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; }
|
|
|
|
}
|