2024-05-13 23:46:59 +04:00
|
|
|
|
using FishFactoryDataModel.Models;
|
|
|
|
|
|
|
|
|
|
namespace FishFactoryContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class MessageInfoBindingModel : IMessageInfoModel
|
|
|
|
|
{
|
2024-06-18 15:56:18 +04:00
|
|
|
|
public int Id => throw new NotImplementedException();
|
|
|
|
|
public string MessageId { get; set; } = string.Empty;
|
2024-05-13 23:46:59 +04:00
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|