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

10 lines
377 B
C#
Raw Normal View History

2023-10-19 21:28:09 +03:30
namespace DocuMed.Domain.Dtos.LargDtos;
public class MedicalHistoryTemplateLDto : BaseDto<MedicalHistoryTemplateLDto,MedicalHistoryTemplate>
{
public string ChiefComplaint { get; set; } = string.Empty;
2023-10-22 15:51:11 +03:30
public Guid SectionId { get; set; }
public Guid ApplicationUserId { get; set; }
2023-10-19 21:28:09 +03:30
public List<MedicalHistoryQuestionSDto> Questions { get; set; } = new();
}