using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; namespace Tango.TFS { /// /// Represents an email client for sending emails to team members. /// public interface ITeamFoundationEmailClient { /// /// Gets or sets the SMTP address. /// String SMTP { get; set; } /// /// Gets or sets the SMTP port. /// int Port { get; set; } /// /// Gets or sets the credentials used to authenticate against the SMTP server. /// NetworkCredential Credentials { get; set; } /// /// Sends the specified email. /// /// The email. /// Task Send(Email email); } }