namespace DocuMed.Domain.Dtos.SmallDtos; public class MedicalHistoryAnswerSDto : BaseDto { public string Answer { get; set; } = string.Empty; public string Question { get; set; } = string.Empty; public MedicalHistoryPart Part { get; set; } public MedicalHistoryQuestionType QuestionType { get; set; } public Guid MedicalHistoryId { get; set; } }