18 lines
483 B
C#
18 lines
483 B
C#
|
namespace ComputerHardwareStoreContracts.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; }
|
|||
|
}
|
|||
|
}
|