using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace GreenTree.Strohrmann.ERP.Services.Notification { public interface IMailNotificationOptions { /// /// The Name from which the mails come from /// public string From { get; set; } /// /// The address of the SMTP server /// public string SmtpServerAddress { get; set; } /// /// The authenticated username on the SMTP server /// public string SmtpServerUsername { get; set; } /// /// The password of the authenticated SMTP server /// public string SmtpServerPassword { get; set; } /// /// The domain of the authenticated SMTP server /// public string SmtpServerDomain { get; set; } } }