Api-PWA/DocuMed.Domain/Dtos/SmallDtos/MedicalHistoryTemplateSDto.cs

9 lines
360 B
C#
Raw Normal View History

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; }
public Guid ApplicationUserId { get; set; }
2023-10-19 21:28:09 +03:30
}