37 lines
1.2 KiB
C#
Raw Permalink Normal View History

2024-06-21 18:19:35 +04:00
using FurnitureAssemblyContracts.Attributes;
using FurnitureAssemblyDataModels.Models;
2024-06-21 16:28:36 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyContracts.ViewModels
{
// Класс для отображения пользователю информации о сообщениях
public class MessageInfoViewModel : IMessageInfoModel
{
2024-06-21 18:19:35 +04:00
[Column(visible: false)]
public int Id { get; set; }
[Column(visible: false)]
2024-06-21 16:28:36 +04:00
public string MessageId { get; set; } = string.Empty;
2024-06-21 18:19:35 +04:00
[Column(visible: false)]
public int? ClientId { get; set; }
2024-06-21 16:28:36 +04:00
2024-06-21 18:19:35 +04:00
[Column(title: "Отправитель", width: 150)]
2024-06-21 16:28:36 +04:00
public string SenderName { get; set; } = string.Empty;
2024-06-21 18:19:35 +04:00
[Column(title: "Дата отправки", width: 150)]
2024-06-21 16:28:36 +04:00
public DateTime DateDelivery { get; set; } = DateTime.Now;
2024-06-21 18:19:35 +04:00
[Column(title: "Заголовок", width: 150)]
2024-06-21 16:28:36 +04:00
public string Subject { get; set; } = string.Empty;
2024-06-21 18:19:35 +04:00
[Column(title: "Текст", width: 150)]
2024-06-21 16:28:36 +04:00
public string Body { get; set; } = string.Empty;
}
}