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