2024-05-04 00:47:40 +04:00
|
|
|
|
using CarRepairShopDataModels;
|
|
|
|
|
|
|
|
|
|
namespace CarRepairShopContracts.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; }
|
2024-05-20 22:12:07 +04:00
|
|
|
|
public int Id => throw new NotImplementedException();
|
2024-05-04 00:47:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|