2024-05-16 17:00:28 +04:00
|
|
|
|
using PlumbingRepairContracts.Attributes;
|
|
|
|
|
using PlumbingRepairDataModels.Models;
|
2024-05-02 22:08:35 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
|
|
|
|
{
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int? ClientId { get; set; }
|
|
|
|
|
[Column(title: "Отправитель", width: 150)]
|
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2024-05-16 19:02:46 +04:00
|
|
|
|
[Column(title: "Дата отправления", width: 150, formatDate: true)]
|
2024-05-16 17:00:28 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
|
|
|
|
[Column(title: "Заголовок", width: 150)]
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-05-16 17:37:12 +04:00
|
|
|
|
[Column(title: "Прочитано", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public bool IsRead { get; set; } = false;
|
|
|
|
|
[Column(title: "Ответ", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string? ReplyText { get; set; }
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
2024-05-15 19:54:27 +04:00
|
|
|
|
}
|
2024-05-02 22:08:35 +04:00
|
|
|
|
}
|