PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BindingModels/MessageInfoBindingModel.cs

22 lines
517 B
C#
Raw Normal View History

2024-05-16 10:17:58 +04:00
using GiftShopDataModels.Models;
namespace GiftShopContracts.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-05-17 13:28:57 +04:00
public int Id => throw new NotImplementedException();
2024-05-16 10:17:58 +04:00
}
}