2023-04-22 21:40:26 +04:00
|
|
|
|
using FurnitureAssemblyContracts.Attributes;
|
|
|
|
|
using FurnitureAssemblyDataModels.Models;
|
|
|
|
|
|
2023-04-18 18:24:46 +04:00
|
|
|
|
|
|
|
|
|
namespace FurnitureAssemblyContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
|
|
|
|
{
|
2023-04-22 21:40:26 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-04-18 18:24:46 +04:00
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
2023-04-22 21:40:26 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-04-18 18:24:46 +04:00
|
|
|
|
public int? ClientId { get; set; }
|
2023-04-22 21:40:26 +04:00
|
|
|
|
[Column(title: "Отправитель", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-04-18 18:24:46 +04:00
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2023-04-22 21:40:26 +04:00
|
|
|
|
[Column(title: "Дата письма", width: 100)]
|
2023-04-18 18:24:46 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2023-04-22 21:40:26 +04:00
|
|
|
|
[Column(title: "Заголовок", width: 170)]
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-04-18 18:24:46 +04:00
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2023-05-05 10:35:44 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-04-22 23:57:23 +04:00
|
|
|
|
public int Id => throw new NotImplementedException();
|
2023-04-18 18:24:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|