2023-05-02 18:16:03 +04:00
|
|
|
|
using SushiBarContracts.Attributes;
|
|
|
|
|
using SushiBarDataModels.Models;
|
2023-05-02 17:43:38 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
|
|
|
|
{
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-05-02 17:43:38 +04:00
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
|
|
|
|
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-05-02 17:43:38 +04:00
|
|
|
|
public int? ClientId { get; set; }
|
|
|
|
|
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(title: "Отправитель", width: 150)]
|
2023-05-02 17:43:38 +04:00
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
|
|
|
|
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(title: "Дата письма", width: 150)]
|
2023-05-02 17:43:38 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
|
|
|
|
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(title: "Заголовок", width: 150)]
|
2023-05-02 17:43:38 +04:00
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-05-02 17:43:38 +04:00
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2023-05-02 17:43:48 +04:00
|
|
|
|
|
2023-05-02 18:16:03 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
2023-05-02 17:43:48 +04:00
|
|
|
|
[DisplayName("Прочитано")]
|
|
|
|
|
public bool HasRead { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Ответ")]
|
|
|
|
|
public string? Answer { get; set; }
|
2023-05-02 17:43:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|