PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/ViewModels/MessageInfoViewModel.cs

31 lines
955 B
C#
Raw Normal View History

2024-05-17 13:28:57 +04:00
using GiftShopContracts.Attributes;
using GiftShopDataModels.Models;
2024-05-16 10:17:58 +04:00
using System.ComponentModel;
namespace GiftShopContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
2024-05-17 13:28:57 +04:00
[Column(visible: false)]
2024-05-16 10:17:58 +04:00
public string MessageId { get; set; } = string.Empty;
2024-05-17 13:28:57 +04:00
[Column(visible: false)]
2024-05-16 10:17:58 +04:00
public int? ClientId { get; set; }
2024-05-17 13:28:57 +04:00
[Column("Имя отправителя", gridViewAutoSize: GridViewAutoSize.DisplayedCells, isUseAutoSize: true)]
2024-05-16 10:17:58 +04:00
public string SenderName { get; set; } = string.Empty;
2024-05-17 13:28:57 +04:00
[Column("Дата отправления", width: 100)]
2024-05-16 10:17:58 +04:00
public DateTime DateDelivery { get; set; }
2024-05-17 13:28:57 +04:00
[Column("Тема", width: 150)]
2024-05-16 10:17:58 +04:00
public string Subject { get; set; } = string.Empty;
2024-05-17 13:28:57 +04:00
[Column("Содержание", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-05-16 10:17:58 +04:00
public string Body { get; set; } = string.Empty;
2024-05-17 13:28:57 +04:00
[Column(visible: false)]
public int Id => throw new NotImplementedException();
2024-05-16 10:17:58 +04:00
}
}