PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyContracts/ViewModels/MessageInfoViewModel.cs

25 lines
973 B
C#
Raw Normal View History

2024-05-18 14:38:09 +04:00
using TravelCompanyDataModels.Models;
using System.ComponentModel;
2024-05-18 14:59:42 +04:00
using TravelCompanyContracts.Attributes;
2024-05-18 14:38:09 +04:00
namespace TravelCompanyContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
2024-05-18 14:59:42 +04:00
[Column(visible: false)]
public int Id { get; set; }
[Column(visible: false)]
public string MessageId { get; set; } = string.Empty;
[Column(visible: false)]
public int? ClientId { get; set; }
[Column(title: "Отправитель", width: 150)]
public string SenderName { get; set; } = string.Empty;
[Column(title: "Дата письма", width: 120)]
public DateTime DateDelivery { get; set; }
[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-05-18 14:38:09 +04:00
}
}