PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryContracts/ViewModels/MessageInfoViewModel.cs

30 lines
990 B
C#
Raw Normal View History

using ConfectioneryContracts.Attributes;
using ConfectioneryDataModels.Models;
2024-05-18 17:52:58 +04:00
using System.ComponentModel;
namespace ConfectioneryContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
[Column(visible: false)]
public int Id { get; set; }
[Column(visible: false)]
2024-05-18 17:52:58 +04:00
public string MessageId { get; set; } = string.Empty;
[Column(visible: false)]
2024-05-18 17:52:58 +04:00
public int? ClientId { get; set; }
[Column(title: "Отправитель", width: 150)]
2024-05-18 17:52:58 +04:00
public string SenderName { get; set; } = string.Empty;
[Column(title: "Дата письма", width: 120)]
2024-05-18 17:52:58 +04:00
public DateTime DateDelivery { get; set; }
[Column(title: "Дата письма", width: 150)]
2024-05-18 17:52:58 +04:00
public string Subject { get; set; } = string.Empty;
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-05-18 17:52:58 +04:00
public string Body { get; set; } = string.Empty;
}
}