9 lines
375 B
C#
9 lines
375 B
C#
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; }
|
|
} |