2024-05-03 01:12:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-05-16 23:13:47 +04:00
|
|
|
|
using ComputersShopContracts.Attributes;
|
2024-05-03 01:12:33 +04:00
|
|
|
|
|
|
|
|
|
namespace ComputersShopContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel
|
|
|
|
|
{
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column(visible:false)]
|
2024-05-03 01:12:33 +04:00
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column(visible:false)]
|
2024-05-03 01:12:33 +04:00
|
|
|
|
public int? ClientId { get; set; }
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column("Имя отправителя", gridViewAutoSize: GridViewAutoSize.DisplayedCells, isUseAutoSize: true)]
|
2024-05-03 01:12:33 +04:00
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column("Дата доставки", width:100)]
|
2024-05-03 01:12:33 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column("Тема", width:150)]
|
2024-05-03 01:12:33 +04:00
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column("Содержание", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-05-03 01:12:33 +04:00
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-05-16 23:13:47 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
2024-05-03 01:12:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|