or
public class SurveySummaryFindingGlobal
{
public int SurveyId { get; set; }
public int TotalNumberSurveyed { get; set; }
public int TotalNumberResponsed { get; set;}
public System.DateTime DistributionStartDate { get; set; }
public System.DateTime DistributionEndDate { get; set; }
public List<
SurveyDept
> Departments { get; set; }
public List<
SurveySummaryFindingDetail
> ReportSummaryLineItem { get; set; }
}
public class SurveySummaryFindingDetail
{
public decimal Percentage { get; set; }
public int TotalResponses { get; set; }
public int SurveyGroupID { get; set; }
public int SurveyQuestionID { get; set; }
public string SurveyGroupName { get; set; }
public string QuestionResponse { get; set; }
public string QuestionText { get; set; }
}