20 lines
562 B
C#
20 lines
562 B
C#
namespace BMA.EHR.Application.Responses.Messages
|
|
{
|
|
public class InboxResponse
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
public string Body { get; set; } = string.Empty;
|
|
|
|
public Guid ReceiverUserId { get; set; } = Guid.Empty;
|
|
|
|
public CommandPayload Payload { get; set; } = new CommandPayload();
|
|
|
|
public bool IsOpen { get; set; } = false;
|
|
|
|
public DateTime ReceiveDate { get; set; } = DateTime.Now;
|
|
|
|
public DateTime? OpenDate { get; set; }
|
|
}
|
|
}
|