using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BusinessLogic.Tools.Mail { public class MailOptions { public string Email { get; set; } = null!; public string Password { get; set; } = null!; public string SmtpClientHost { get; set; } = null!; public short SmtpClientPort { get; set; } } }