using System.Collections.Generic; namespace Orchard.Email.Models { public class EmailMessage { public string Subject { get; set; } public string Body { get; set; } public string Recipients { get; set; } public string ReplyTo { get; set; } public string From { get; set; } public string Bcc { get; set; } public string Cc { get; set; } /// /// IEnumerable of strings representing attachments paths /// public IEnumerable Attachments { get; set; } } }