11 lines
431 B
C#
11 lines
431 B
C#
namespace DocuMed.Domain.Dtos.LargDtos;
|
|
|
|
public class MedicalHistoryTemplateLDto : BaseDto<MedicalHistoryTemplateLDto,MedicalHistoryTemplate>
|
|
{
|
|
|
|
public string ChiefComplaint { get; set; } = string.Empty;
|
|
public Guid SectionId { get; set; }
|
|
public SectionSDto Section { get; set; } = new();
|
|
public Guid ApplicationUserId { get; set; }
|
|
public List<MedicalHistoryQuestionSDto> Questions { get; set; } = new();
|
|
} |