19 lines
504 B
C#
19 lines
504 B
C#
using SushiBarDataModels;
|
|
namespace SushiBarContracts.BindingModel
|
|
{
|
|
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; } = DateTime.Now;
|
|
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
public string Body { get; set; } = string.Empty;
|
|
}
|
|
}
|