|
namespace DocuMed.PWA.Models.Entities
|
|
{
|
|
public class MedicalHistorySystemReview
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string System { get; set; } = string.Empty;
|
|
public bool IsSign { get; set; }
|
|
public bool IsSymptom { get; set; }
|
|
}
|
|
}
|