2024-06-21 21:49:23 +04:00
|
|
|
|
using ShipyardContracts.Attributes;
|
|
|
|
|
using System;
|
2024-06-02 18:43:09 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ShipyardContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel
|
|
|
|
|
{
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-06-02 18:43:09 +04:00
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-06-02 18:43:09 +04:00
|
|
|
|
public int? ClientId { get; set; }
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(title: "Отправитель", gridViewAutoSize: GridViewAutoSize.DisplayedCells,
|
|
|
|
|
isUseAutoSize: true)]
|
2024-06-02 18:43:09 +04:00
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(title: "Дата письма", width: 100)]
|
2024-06-02 18:43:09 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(title: "Заголовок", width: 150)]
|
2024-06-02 18:43:09 +04:00
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill,
|
|
|
|
|
isUseAutoSize: true)]
|
2024-06-02 18:43:09 +04:00
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
2024-06-02 18:43:09 +04:00
|
|
|
|
}
|
|
|
|
|
}
|