2023-04-29 22:03:56 +04:00
|
|
|
|
using PlumbingRepairDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoBindingModel : IMessageInfoModel
|
|
|
|
|
{
|
|
|
|
|
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 Body { get; set; } = string.Empty;
|
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2023-05-07 20:50:27 +04:00
|
|
|
|
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
2023-04-29 22:03:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|