Merge branch 'lab7' into lab8

This commit is contained in:
y3nnn 2024-06-16 11:35:36 +04:00
commit 3d2f5c4497

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; }
}
}