24 lines
662 B
C#
Raw Normal View History

2023-05-02 17:43:38 +04:00
using SushiBarDataModels.Models;
namespace SushiBarContracts.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; }
2023-05-02 17:43:48 +04:00
2023-05-02 18:16:03 +04:00
public int Id => throw new NotImplementedException();
2023-05-02 17:43:48 +04:00
public bool HasRead { get; set; }
public string? Answer { get; set; } = string.Empty;
2023-05-02 17:43:38 +04:00
}
}