21 lines
567 B
C#

using IceCreamShopDataModels.Models;
namespace IceCreamShopContracts.BindingModels
{
public class MessageInfoBindingModel : IMessageInfoModel
{
public int Id => throw new NotImplementedException();
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; }
}
}