Api-PWA/DocuMed.Domain/Dtos/SmallDtos/MedicalHistoryQuestionSDto.cs

15 lines
567 B
C#
Raw Permalink Normal View History

2023-10-19 21:28:09 +03:30
namespace DocuMed.Domain.Dtos.SmallDtos;
public class MedicalHistoryQuestionSDto : BaseDto<MedicalHistoryQuestionSDto,MedicalHistoryQuestion>
{
public string Question { get; set; } = string.Empty;
public MedicalHistoryPart Part { get; set; }
public MedicalHistoryQuestionType QuestionType { get; set; }
public Guid MedicalHistoryTemplateId { get; set; }
2023-10-28 23:57:28 +03:30
public BodySystem BodySystem { get; set; }
public bool IsSign { get; set; }
public bool IsSymptom { get; set; }
public MedicalHistoryAnswerSDto Answer { get; set; } = new();
2023-10-19 21:28:09 +03:30
}