2024-05-05 00:23:11 +04:00
|
|
|
|
using AutomobilePlantDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantContracts.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 DateTime DateDelivery { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Body { get; set; } = string.Empty;
|
2024-05-16 00:34:01 +04:00
|
|
|
|
|
|
|
|
|
public int Id => throw new NotImplementedException();
|
|
|
|
|
}
|
2024-05-05 00:23:11 +04:00
|
|
|
|
}
|