Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreContracts/ViewModels/MessageInfoViewModel.cs

28 lines
977 B
C#
Raw Normal View History

2023-05-02 14:50:43 +04:00
using JewelryStoreContracts.Attributes;
using JewelryStoreDataModels.Models;
2023-04-30 19:15:31 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
2023-05-02 14:50:43 +04:00
[Column(visible: false)]
2023-04-30 19:15:31 +04:00
public string MessageId { get; set; } = string.Empty;
2023-05-02 14:50:43 +04:00
[Column(visible: false)]
2023-04-30 19:15:31 +04:00
public int? ClientId { get; set; }
2023-05-02 14:50:43 +04:00
[Column("Отправитель", gridViewAutoSize: GridViewAutoSize.DisplayedCells, isUseAutoSize: true)]
2023-04-30 19:15:31 +04:00
public string SenderName { get; set; } = string.Empty;
2023-05-02 14:50:43 +04:00
[Column("Дата письма", width: 100)]
2023-04-30 19:15:31 +04:00
public DateTime DateDelivery { get; set; }
2023-05-02 14:50:43 +04:00
[Column("Заголовок", width: 150)]
2023-04-30 19:15:31 +04:00
public string Subject { get; set; } = string.Empty;
2023-05-02 14:50:43 +04:00
[Column("Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2023-04-30 19:15:31 +04:00
public string Body { get; set; } = string.Empty;
}
}