10 lines
416 B
C#
10 lines
416 B
C#
namespace DocuMed.Domain.Dtos.SmallDtos;
|
|
|
|
public class MedicalHistoryAnswerSDto : BaseDto<MedicalHistoryAnswerSDto,MedicalHistoryAnswer>
|
|
{
|
|
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; }
|
|
} |