2024-05-26 08:32:11 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
internal class MailSendInfoBindingModel
|
|
|
|
|
{
|
2024-05-26 08:38:40 +04:00
|
|
|
|
public string MailAddress { get; set; } = string.Empty;
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
public string Text { get; set; } = string.Empty;
|
2024-05-26 08:32:11 +04:00
|
|
|
|
}
|
|
|
|
|
}
|