2024-05-05 18:46:39 +04:00
|
|
|
|
using GarmentFactoryDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace GarmentFactoryContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoBindingModel : IMessageInfoModel
|
|
|
|
|
{
|
2024-05-06 00:02:04 +04:00
|
|
|
|
public int Id => throw new NotImplementedException();
|
2024-05-05 18:46:39 +04:00
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|