Добавил биндинг модель письма
This commit is contained in:
parent
8dbfbd88e9
commit
b92ffdc441
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user