Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using adas_core.Domain.Models.MongoModels;
|
||||
|
||||
namespace adas_core.Domain.Models.Responses;
|
||||
|
||||
public class PatientSearch(
|
||||
Patient? patient,
|
||||
Patient? archivePatient,
|
||||
Admission? admission,
|
||||
bool isArchived,
|
||||
bool hasResult)
|
||||
{
|
||||
public Patient? Patient { get; set; } = patient;
|
||||
public Patient? ArchivedPatient { get; set; } = archivePatient;
|
||||
public Admission? Admission { get; set; } = admission;
|
||||
public bool IsArchived { get; set; } = isArchived;
|
||||
public bool HasResult { get; set; } = hasResult;
|
||||
}
|
||||
Reference in New Issue
Block a user