42 lines
1.6 KiB
C#
42 lines
1.6 KiB
C#
using PlumbingRepairContracts.Attributes;
|
|
using PlumbingRepairDataModels.Models;
|
|
using System.ComponentModel;
|
|
|
|
namespace PlumbingRepairContracts.ViewModels
|
|
{
|
|
public class MessageInfoViewModel : IMessageInfoModel
|
|
{
|
|
<<<<<<< HEAD
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
|
public int? ClientId { get; set; }
|
|
[DisplayName("Отправитель")]
|
|
public string SenderName { get; set; } = string.Empty;
|
|
[DisplayName("Дата отправления")]
|
|
public DateTime DateDelivery { get; set; }
|
|
[DisplayName("Заголовок")]
|
|
public string Subject { get; set; } = string.Empty;
|
|
[DisplayName("Текст")]
|
|
public string Body { get; set; } = string.Empty;
|
|
[DisplayName("Прочитано")]
|
|
public bool IsRead { get; set; } = false;
|
|
[DisplayName("Ответ")]
|
|
public string? ReplyText { get; set; }
|
|
=======
|
|
[Column(visible: false)]
|
|
public string MessageId { get; set; } = string.Empty;
|
|
[Column(visible: false)]
|
|
public int? ClientId { get; set; }
|
|
[Column(title: "Отправитель", width: 150)]
|
|
public string SenderName { get; set; } = string.Empty;
|
|
[Column(title: "Дата отправления", width: 150)]
|
|
public DateTime DateDelivery { get; set; }
|
|
[Column(title: "Заголовок", width: 150)]
|
|
public string Subject { get; set; } = string.Empty;
|
|
[Column(title: "Текст", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string Body { get; set; } = string.Empty;
|
|
[Column(visible: false)]
|
|
public int Id => throw new NotImplementedException();
|
|
>>>>>>> lab_8
|
|
}
|
|
} |