25 lines
657 B
C#
Raw Normal View History

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-05 23:46:21 +04:00
public bool IsReaded { get; set; }
public string? Reply { get; set; }
2024-05-05 00:23:11 +04:00
}
2024-05-16 00:34:01 +04:00
public int Id => throw new NotImplementedException();
}
2024-05-05 00:23:11 +04:00
}