2024-05-16 00:34:01 +04:00
|
|
|
|
using AutomobilePlantContracts.Attributes;
|
|
|
|
|
using AutomobilePlantDataModels.Models;
|
2024-05-05 00:23:11 +04:00
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
|
|
|
|
{
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int? ClientId { get; set; }
|
|
|
|
|
[Column("Sender", gridViewAutoSize: GridViewAutoSize.DisplayedCells, isUseAutoSize: true)]
|
|
|
|
|
public string SenderName { get; set; } = string.Empty;
|
|
|
|
|
[Column("Delivery Date", width: 100)]
|
|
|
|
|
public DateTime DateDelivery { get; set; }
|
|
|
|
|
[Column("Subject", width: 150)]
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
[Column("Body", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-05-05 00:23:11 +04:00
|
|
|
|
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
|
|
|
|
}
|
2024-05-05 00:23:11 +04:00
|
|
|
|
}
|