19 lines
510 B
C#
19 lines
510 B
C#
namespace adas_core.Domain.Models.DTO;
|
|
|
|
/// <summary>
|
|
/// Represents a data transfer object used to encapsulate and transfer patient information between application layers or services.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=59e4bee -->
|
|
public class PatientDto
|
|
{
|
|
public string PatientNumber { get; set; } = string.Empty;
|
|
|
|
public PatientLocation? Location { get; set; }
|
|
|
|
public Person? Patient { get; set; }
|
|
|
|
|
|
public DateTime MessageTime { get; set; }
|
|
|
|
public bool WaitResult { get; set; }
|
|
} |