2024-05-02 22:08:35 +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 DateTime DateDelivery { get; set; }
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-05-15 19:54:27 +04:00
|
|
|
|
public bool IsRead { get; set; } = false;
|
|
|
|
|
public string? ReplyText { get; set; } = string.Empty;
|
2024-05-16 17:00:28 +04:00
|
|
|
|
public int Id => throw new NotImplementedException();
|
2024-05-15 19:54:27 +04:00
|
|
|
|
}
|
2024-05-02 22:08:35 +04:00
|
|
|
|
}
|