using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace webapi.Infrastructure.Model { public interface IEmailSettings { string SmtpServer { get; set; } int SmtpPort { get; set; } string FromAddress { get; set; } string SmtpUsername { get; set; } string SmtpPassword { get; set; } } }