PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopContracts/ViewModels/MessageInfoViewModel.cs

24 lines
918 B
C#

using FlowerShopContracts.Attributes;
using FlowerShopDataModels.Models;
namespace FlowerShopContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
[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;
}
}