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

12 lines
475 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; }
2023-10-24 12:45:25 +03:30
public SectionSDto Section { get; set; } = new();
public Guid ApplicationUserId { get; set; }
public DateTime CreatedAt { get; set; }
2023-10-19 21:28:09 +03:30
public List<MedicalHistoryQuestionSDto> Questions { get; set; } = new();
}