Compare commits

..

No commits in common. "3d2f5c4497cd9d8f99ab2bab9ffb238f209f991f" and "97138f65127b8b9e9aa7a4d811d9d54e02bbcc9f" have entirely different histories.

View File

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