2024-05-16 18:55:15 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
|
|
|
|
using SushiBarDataModels.Models;
|
2024-05-13 13:16:59 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.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; }
|
|
|
|
|
}
|
|
|
|
|
}
|