PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryContracts/BindingModels/MailConfigBindingModel.cs

17 lines
453 B
C#
Raw Normal View History

2024-05-18 17:52:58 +04:00
namespace ConfectioneryContracts.BindingModels
{
public class MailConfigBindingModel
{
public string MailLogin { get; set; } = string.Empty;
public string MailPassword { get; set; } = string.Empty;
public string SmtpClientHost { get; set; } = string.Empty;
public int SmtpClientPort { get; set; }
public string PopHost { get; set; } = string.Empty;
public int PopPort { get; set; }
}
}