2023-10-19 21:28:09 +03:30
|
|
|
|
namespace DocuMed.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class MedicalHistoryTemplateSDto : BaseDto<MedicalHistoryTemplateSDto,MedicalHistoryTemplate>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ChiefComplaint { get; set; } = string.Empty;
|
2023-10-28 23:57:28 +03:30
|
|
|
|
public string SectionName { get; set; } = string.Empty;
|
2023-10-22 15:51:11 +03:30
|
|
|
|
public Guid SectionId { get; set; }
|
2023-10-24 10:43:48 +03:30
|
|
|
|
public Guid ApplicationUserId { get; set; }
|
2023-10-19 21:28:09 +03:30
|
|
|
|
}
|