Добавил биндинг модель письма

This commit is contained in:
Никита Потапов 2024-05-05 12:43:15 +04:00
parent 8dbfbd88e9
commit b92ffdc441

View File

@ -0,0 +1,14 @@
using SecuritySystemDataModels.Models;
namespace SecuritySystemContracts.BindingModels
{
public class MessageInfoBindingModel : IMessageInfoModel
{
public string MessageId { get; set; } = string.Empty;
public int? ClientId { get; set; } = null;
public string SenderName { get; set; } = string.Empty;
public DateTime DateDelivery { get; set; } = DateTime.Now;
public string Subject { get; set; } = string.Empty;
public string Body { get; set; } = string.Empty;
}
}