9 lines
360 B
C#
9 lines
360 B
C#
namespace DocuMed.Domain.Dtos.SmallDtos;
|
|
|
|
public class MedicalHistoryTemplateSDto : BaseDto<MedicalHistoryTemplateSDto,MedicalHistoryTemplate>
|
|
{
|
|
public string ChiefComplaint { get; set; } = string.Empty;
|
|
public string SectionName { get; set; } = string.Empty;
|
|
public Guid SectionId { get; set; }
|
|
public Guid ApplicationUserId { get; set; }
|
|
} |