25 lines
663 B
C#
Raw Normal View History

2023-04-18 18:24:46 +04:00
using FurnitureAssemblyDataModels.Models;
namespace FurnitureAssemblyContracts.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;
public string? Reply { get; set; }
public bool IsRead { get; set; }
2023-04-23 11:19:23 +04:00
2023-04-22 23:57:23 +04:00
public int Id => throw new NotImplementedException();
2023-04-18 18:24:46 +04:00
}
}