ISEbd-21. Gruzdev A.P. Lab Work 07 #14

Closed
y3nnn wants to merge 10 commits from lab7 into lab6
Showing only changes of commit 945fa5c83d - 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; }
}
}