PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/ViewModels/MessageInfoViewModel.cs

35 lines
1.2 KiB
C#
Raw Normal View History

2024-05-12 11:23:15 +04:00
using ComputersShopContracts.Attributes;
using ComputersShopDataModels.Models;
2024-04-16 23:11:45 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
2024-05-12 11:23:15 +04:00
[Column(visible: false)]
2024-04-16 23:11:45 +04:00
public string MessageId { get; set; } = string.Empty;
2024-05-12 11:23:15 +04:00
[Column(visible: false)]
2024-04-16 23:11:45 +04:00
public int? ClientId { get; set; }
2024-05-12 11:23:15 +04:00
[Column("Отправитель", gridViewAutoSize: GridViewAutoSize.DisplayedCells, isUseAutoSize: true)]
2024-04-16 23:11:45 +04:00
public string SenderName { get; set; } = string.Empty;
2024-05-12 11:23:15 +04:00
[Column("Дата письма", width: 100)]
2024-04-16 23:11:45 +04:00
public DateTime DateDelivery { get; set; }
2024-05-12 11:23:15 +04:00
[Column("Заголовок", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2024-04-16 23:11:45 +04:00
public string Subject { get; set; } = string.Empty;
2024-05-12 11:23:15 +04:00
[Column("Текст", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2024-04-16 23:11:45 +04:00
public string Body { get; set; } = string.Empty;
2024-05-12 11:23:15 +04:00
[Column(visible: false)]
public int Id => throw new NotImplementedException();
2024-04-16 23:11:45 +04:00
}
}