35 lines
1.1 KiB
C#
Raw Normal View History

2024-05-18 21:35:37 +04:00
using SushiBarContracts.Attributes;
using SushiBarDataModels.Models;
2024-05-16 18:55:15 +04:00
using SushiBarDataModels.Models;
2024-05-13 13:16:59 +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-05-18 21:35:37 +04:00
[Column(visible: false)]
public string MessageId { get; set; } = string.Empty;
[Column(visible: false)]
public int? ClientId { get; set; }
2024-05-13 13:16:59 +04:00
2024-05-18 21:35:37 +04:00
[Column("Отправитель", gridViewAutoSize: GridViewAutoSize.DisplayedCells, isUseAutoSize: true)]
public string SenderName { get; set; } = string.Empty;
2024-05-13 13:16:59 +04:00
2024-05-18 21:35:37 +04:00
[Column("Дата письма", width: 100)]
public DateTime DateDelivery { get; set; }
2024-05-13 13:16:59 +04:00
2024-05-18 21:35:37 +04:00
[Column("Заголовок", width: 150)]
public string Subject { get; set; } = string.Empty;
2024-05-13 13:16:59 +04:00
2024-05-18 21:35:37 +04:00
[Column("Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string Body { get; set; } = string.Empty;
[Column(visible: false)]
public int Id => throw new NotImplementedException();
}
2024-05-13 13:16:59 +04:00
}