Логика для Мэйл в Контракстс
This commit is contained in:
parent
6cd384571a
commit
c351b43679
@ -8,5 +8,11 @@ namespace LawCompanyContracts.BindingModels
|
||||
{
|
||||
internal 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; }
|
||||
}
|
||||
}
|
||||
|
@ -8,5 +8,8 @@ namespace LawCompanyContracts.BindingModels
|
||||
{
|
||||
internal class MailSendInfoBindingModel
|
||||
{
|
||||
public string MailAddress { get; set; } = string.Empty;
|
||||
public string Subject { get; set; } = string.Empty;
|
||||
public string Text { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user