namespace Yavsc.Settings { public class SmtpSettings { public string Server { get; set; } public string Host { get => Server; set => Server = value; } public int Port { get; set; } public string SenderName { get; set; } public string SenderEmail { get; set; } public string UserName { get; set; } public string Password { get; set; } } }