ISEbd-21. Gruzdev A.P. Lab Work 08 #15

Closed
y3nnn wants to merge 5 commits from lab8 into lab7
Showing only changes of commit 3d2f5c4497 - Show all commits

View File

@ -8,10 +8,16 @@ namespace ComputersShopContracts.BindingModels
{
public class MailSendInfoBindingModel
{
public string MailAddress { get; set; } = string.Empty;
public string MessageId { get; set; } = string.Empty;
public int? ClientId { get; set; }
public string SenderName { get; set; } = string.Empty;
public string Subject { get; set; } = string.Empty;
public string Text { get; set; } = string.Empty;
public string Body { get; set; } = string.Empty;
public DateTime DateDelivery { get; set; }
}
}