2024-05-22 14:38:56 +04:00
|
|
|
|
using ConfectioneryDataModels.Models;
|
|
|
|
|
using ConfectioneryContracts.Attributes;
|
2024-05-22 07:00:31 +04:00
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
|
|
|
{
|
2024-05-22 14:38:56 +04:00
|
|
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
2024-05-22 07:00:31 +04:00
|
|
|
|
{
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Column(visible: false)]
|
2024-05-22 07:00:31 +04:00
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-05-22 07:00:31 +04:00
|
|
|
|
public int? ClientId { get; set; }
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Отправитель", width: 250)]
|
2024-05-22 07:00:31 +04:00
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Дата письма", width: 150)]
|
2024-05-22 07:00:31 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Заголовок", width: 150)]
|
2024-05-22 07:00:31 +04:00
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill,
|
|
|
|
|
isUseAutoSize: true)]
|
2024-05-22 07:00:31 +04:00
|
|
|
|
public string Body { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|