PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaContracts/BindingModels/MessageInfoBindingModel.cs

16 lines
512 B
C#
Raw Permalink Normal View History

2024-04-02 16:35:18 +04:00
using PizzeriaDataModels.Models;
namespace PizzeriaContracts.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-04-03 17:52:29 +04:00
public int Id => throw new NotImplementedException();
}
2024-04-02 16:35:18 +04:00
}