Api-PWA/DocuMed.Domain/Dtos/LargDtos/MedicalHistoryTemplateLDto.cs

12 lines
475 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 DateTime CreatedAt { get; set; }
public List<MedicalHistoryQuestionSDto> Questions { get; set; } = new();
}