CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/MessageInfoViewModel.cs

31 lines
816 B
C#

using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.ViewModels
{
public class MessageInfoViewModel: IMessageInfoModel
{
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;
}
}