2024-05-16 18:55:15 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
2024-06-16 15:28:03 +04:00
|
|
|
|
using SushiBarContracts.Attributes;
|
2024-05-16 18:55:15 +04:00
|
|
|
|
using SushiBarDataModels.Models;
|
2024-05-13 13:16:59 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
|
|
|
|
{
|
2024-06-16 15:28:03 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int? ClientId { get; set; }
|
2024-05-13 13:16:59 +04:00
|
|
|
|
|
2024-06-16 15:28:03 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; private set; }
|
2024-05-13 13:16:59 +04:00
|
|
|
|
|
2024-06-16 15:28:03 +04:00
|
|
|
|
[Column(title: "Отправитель", width: 150)]
|
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2024-05-13 13:16:59 +04:00
|
|
|
|
|
2024-06-16 15:28:03 +04:00
|
|
|
|
[Column(title: "Дата письма", width: 150)]
|
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2024-05-13 13:16:59 +04:00
|
|
|
|
|
2024-06-16 15:28:03 +04:00
|
|
|
|
[Column(title: "Заголовоск", width: 170)]
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
2024-05-13 13:16:59 +04:00
|
|
|
|
|
2024-06-16 15:28:03 +04:00
|
|
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-05-13 13:16:59 +04:00
|
|
|
|
}
|
|
|
|
|
}
|