using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.TFS { /// /// Represents a simple email. /// public class Email { /// /// Gets or sets the subject. /// public String Subject { get; set; } /// /// Gets or sets the body. /// public String Body { get; set; } /// /// Gets or sets whether the body is HTML text. /// public bool IsBodyHTML { get; set; } /// /// Gets or sets the sender member. /// public TeamMember From { get; set; } /// /// Gets or sets the recipient members. /// public List To { get; set; } /// /// Gets or sets the optional attachments. /// public List Attachments { get; set; } /// /// Initializes a new instance of the class. /// public Email() { To = new List(); Attachments = new List(); } } }