20 lines
622 B
C#
20 lines
622 B
C#
using ElectronicsShopDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronicsShopContracts.BindingModels
|
|
{
|
|
public class MessageInfoBindingModel : IMessageInfoModel
|
|
{
|
|
public string MessageID { get; set; } = string.Empty;
|
|
public int? ClientID { get; set; }
|
|
public string SenderName { get; set; } = string.Empty;
|
|
public string Subject { get; set; } = string.Empty;
|
|
public string Body { get; set; } = string.Empty;
|
|
public DateTime DateDelivery { get; set; }
|
|
}
|
|
}
|