ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/ViewModels/MessageInfoViewModel.cs

36 lines
1.1 KiB
C#
Raw Normal View History

2024-06-01 17:37:58 +04:00
using SushiBarContracts.Attributes;
using SushiBarDataModels.Models;
2024-06-01 16:27:44 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
2024-06-01 17:37:58 +04:00
[Column(visible: false)]
public int Id { get; set; }
[Column(visible: false)]
2024-06-01 16:27:44 +04:00
public string MessageId { get; set; } = string.Empty;
2024-06-01 17:37:58 +04:00
[Column(visible: false)]
2024-06-01 16:27:44 +04:00
public int? ClientId { get; set; }
2024-06-01 17:37:58 +04:00
[Column(title: "Отправитель", width: 150)]
2024-06-01 16:27:44 +04:00
public string SenderName { get; set; } = string.Empty;
2024-06-01 17:37:58 +04:00
[Column(title: "Дата письма", width: 120)]
2024-06-01 16:27:44 +04:00
public DateTime DateDelivery { get; set; }
2024-06-01 17:37:58 +04:00
[Column(title: "Заголовок", width: 120)]
2024-06-01 16:27:44 +04:00
public string Subject { get; set; } = string.Empty;
2024-06-01 17:37:58 +04:00
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-06-01 16:27:44 +04:00
public string Body { get; set; } = string.Empty;
}
2024-06-01 17:37:58 +04:00
}