2024-04-02 16:35:18 +04:00
|
|
|
|
using PizzeriaDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PizzeriaContracts.BindingModels
|
|
|
|
|
{
|
2024-04-03 09:19:16 +04:00
|
|
|
|
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; }
|
|
|
|
|
public bool IsReaded { get; set; }
|
|
|
|
|
public string? ReplyMessageId { get; set; }
|
|
|
|
|
public bool IsReply { get; set; }
|
|
|
|
|
}
|
2024-04-02 16:35:18 +04:00
|
|
|
|
}
|