2023-10-19 21:28:09 +03:30
|
|
|
|
namespace DocuMed.Domain.Dtos.LargDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class MedicalHistoryTemplateLDto : BaseDto<MedicalHistoryTemplateLDto,MedicalHistoryTemplate>
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public string ChiefComplaint { get; set; } = string.Empty;
|
2023-10-22 15:51:11 +03:30
|
|
|
|
public Guid SectionId { get; set; }
|
2023-10-24 10:43:48 +03:30
|
|
|
|
public Guid ApplicationUserId { get; set; }
|
2023-10-19 21:28:09 +03:30
|
|
|
|
public List<MedicalHistoryQuestionSDto> Questions { get; set; } = new();
|
|
|
|
|
|
}
|