39 lines
1.2 KiB
C#
Raw Normal View History

2024-04-03 17:52:29 +04:00
using PizzeriaContracts.Attributes;
using PizzeriaDataModels.Models;
2024-04-02 16:35:18 +04:00
namespace PizzeriaContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
2024-04-03 17:52:29 +04:00
[Column(visible: false)]
public int Id { get; set; }
2024-04-02 16:35:18 +04:00
2024-04-03 17:52:29 +04:00
[Column(visible: false)]
public string MessageId { get; set; } = string.Empty;
2024-04-02 16:35:18 +04:00
2024-04-03 17:52:29 +04:00
[Column(visible: false)]
public int? ClientId { get; set; }
2024-04-02 16:35:18 +04:00
2024-04-03 17:52:29 +04:00
[Column(title: "Отправитель", width: 150)]
public string SenderName { get; set; } = string.Empty;
2024-04-02 16:35:18 +04:00
2024-04-03 17:52:29 +04:00
[Column(title: "Дата письма", width: 120)]
public DateTime DateDelivery { get; set; }
2024-04-02 16:35:18 +04:00
2024-04-03 17:52:29 +04:00
[Column(title: "Заголовок", width: 120)]
public string Subject { get; set; } = string.Empty;
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string Body { get; set; } = string.Empty;
2024-04-03 09:19:16 +04:00
[DisplayName("Прочитанно")]
public bool IsReaded { get; set; }
public string? ReplyMessageId { get; set; }
public IMessageInfoModel? Reply { get; set; }
public bool IsReply { get; set; }
}
2024-04-02 16:35:18 +04:00
}