using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Report.Entity { public class PatientSymptom { public string symptomName { get; set; } public string degree { get; set; } public string timeLength { get; set; } public int displayOrder { get; set; } } }