Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/SmtpSettings.cs
Andy Butland e3a44c6717 Moved configuration setting POCOs into Umbraco.Core and adjusted references.
Amended injection of some settings to use IOptionsSnapshot.
2020-08-20 22:18:50 +01:00

22 lines
456 B
C#

using System.Net.Mail;
namespace Umbraco.Core.Configuration.Models
{
public class SmtpSettings
{
public string From { get; set; }
public string Host { get; set; }
public int Port { get; set; }
public string PickupDirectoryLocation { get; set; }
public SmtpDeliveryMethod DeliveryMethod { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}